We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tsconfig.json
1 parent 6be122e commit 538a710Copy full SHA for 538a710
tsconfig.json
@@ -1,16 +1,19 @@
1
{
2
"compilerOptions": {
3
"strict": true,
4
- "target": "es6",
5
- "module": "commonjs",
6
- "moduleResolution": "node",
+ "target": "ES2019",
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
7
+ "lib": ["ES2019"],
8
"esModuleInterop": true,
9
+ "skipLibCheck": true,
10
"resolveJsonModule": true,
- "forceConsistentCasingInFileNames": true,
- "noImplicitAny": true,
11
- "outDir": "./dist",
+ "moduleDetection": "force",
12
+ "isolatedModules": true,
13
"removeComments": true,
- "skipLibCheck": true,
14
+ // TODO: turn it on
15
+ "noUncheckedIndexedAccess": false,
16
+ "outDir": "dist",
17
"sourceMap": false
18
},
19
"include": ["./lib/**/*.ts"]
0 commit comments