Skip to content

Commit 538a710

Browse files
committed
chore: update tsconfig.json
1 parent 6be122e commit 538a710

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

tsconfig.json

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
22
"compilerOptions": {
33
"strict": true,
4-
"target": "es6",
5-
"module": "commonjs",
6-
"moduleResolution": "node",
4+
"target": "ES2019",
5+
"module": "NodeNext",
6+
"moduleResolution": "NodeNext",
7+
"lib": ["ES2019"],
78
"esModuleInterop": true,
9+
"skipLibCheck": true,
810
"resolveJsonModule": true,
9-
"forceConsistentCasingInFileNames": true,
10-
"noImplicitAny": true,
11-
"outDir": "./dist",
11+
"moduleDetection": "force",
12+
"isolatedModules": true,
1213
"removeComments": true,
13-
"skipLibCheck": true,
14+
// TODO: turn it on
15+
"noUncheckedIndexedAccess": false,
16+
"outDir": "dist",
1417
"sourceMap": false
1518
},
1619
"include": ["./lib/**/*.ts"]

0 commit comments

Comments
 (0)