Skip to content

Commit 17c5b64

Browse files
authored
Try a different tsconfig (#72)
1 parent cc847eb commit 17c5b64

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tsconfig.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@
1515
*/
1616
{
1717
"compilerOptions": {
18-
"target": "es2022",
19-
"module": "commonjs",
18+
"alwaysStrict": true,
19+
"esModuleInterop": true,
2020
"lib": ["es2022"],
21+
"module": "commonjs",
22+
"noImplicitAny": true,
2123
"outDir": "./dist",
2224
"rootDir": "./src",
2325
"strict": true,
24-
"noImplicitAny": true,
25-
"esModuleInterop": true
26+
"target": "es2022",
2627
},
27-
"exclude": ["node_modules/", "tests/"]
28+
"exclude": ["dist/", "node_modules/", "tests/"],
2829
}

0 commit comments

Comments
 (0)