Skip to content

Commit 6ffb9f9

Browse files
committed
Enable checking JavaScript files and fix config values
1 parent 0795b66 commit 6ffb9f9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tsconfig.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
{
22
"compilerOptions": {
3+
"allowJs": true,
34
"allowSyntheticDefaultImports": false,
45
"allowUnreachableCode": false,
56
"allowUnusedLabels": false,
67
"alwaysStrict": true,
7-
"baseUrl": ".",
8+
"baseUrl": "lib/node_modules",
89
"charset": "utf8",
10+
"checkJs": true,
911
"forceConsistentCasingInFileNames": true,
1012
"keyofStringsOnly": false,
1113
"lib": [
1214
"es6"
1315
],
1416
"locale": "en",
1517
"module": "commonjs",
16-
"moduleResolution": "Node",
18+
"moduleResolution": "node",
1719
"newLine": "lf",
1820
"noEmit": true,
1921
"noFallthroughCasesInSwitch": true,
@@ -38,6 +40,6 @@
3840
"**/@stdlib/types/*.d.ts"
3941
],
4042
"exclude": [
41-
"/node_modules/"
43+
"node_modules"
4244
]
4345
}

0 commit comments

Comments
 (0)