Skip to content

Commit 3875040

Browse files
authored
Allow typescript to process JS files (#224)
1 parent 28ea0bd commit 3875040

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

lib/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"lib": ["DOM", "DOM.Iterable", "ES6"]
1010
},
1111
"include": ["./build.json", "."],
12-
"exclude": ["./**/*.test.ts", "./test", "./dist"]
12+
"exclude": ["./**/*.test.ts", "./**/*.test.js", "./test", "./dist"]
1313
}

tsconfig.base.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"allowJs": true,
34
"incremental": true,
45
"declaration": true,
56
"esModuleInterop": true,

0 commit comments

Comments
 (0)