Skip to content

Commit 18d430e

Browse files
committed
Tweak tsconfig
1 parent 3595b31 commit 18d430e

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

tsconfig.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,25 @@
55
],
66
"compilerOptions": {
77

8-
// Lib
9-
"lib": [ "ESNext" ],
10-
"skipLibCheck": true,
11-
"skipDefaultLibCheck": true,
8+
// Node stuff
9+
"module": "Node16",
10+
"allowSyntheticDefaultImports": true,
1211

1312
// Input
14-
"allowSyntheticDefaultImports": true,
15-
"moduleResolution": "Node16",
13+
"resolveJsonModule": true,
14+
"checkJs": true,
1615

1716
// Output
1817
"target": "ESNext",
19-
"module": "Node16",
2018
"sourceMap": true,
2119
"removeComments": true,
2220
"noEmit": true,
2321

22+
// Lib
23+
"lib": [ "ESNext" ],
24+
"skipLibCheck": true,
25+
"skipDefaultLibCheck": true,
26+
2427
// Type checking
2528
"strict": true,
2629
"noImplicitReturns": true,

0 commit comments

Comments
 (0)