We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3595b31 commit 18d430eCopy full SHA for 18d430e
tsconfig.json
@@ -5,22 +5,25 @@
5
],
6
"compilerOptions": {
7
8
- // Lib
9
- "lib": [ "ESNext" ],
10
- "skipLibCheck": true,
11
- "skipDefaultLibCheck": true,
+ // Node stuff
+ "module": "Node16",
+ "allowSyntheticDefaultImports": true,
12
13
// Input
14
- "allowSyntheticDefaultImports": true,
15
- "moduleResolution": "Node16",
+ "resolveJsonModule": true,
+ "checkJs": true,
16
17
// Output
18
"target": "ESNext",
19
- "module": "Node16",
20
"sourceMap": true,
21
"removeComments": true,
22
"noEmit": true,
23
+ // Lib
+ "lib": [ "ESNext" ],
24
+ "skipLibCheck": true,
25
+ "skipDefaultLibCheck": true,
26
+
27
// Type checking
28
"strict": true,
29
"noImplicitReturns": true,
0 commit comments