Skip to content

Commit f041c89

Browse files
committed
fix: tsconfig
1 parent a85cdcb commit f041c89

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

tsconfig.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
{
22
"compilerOptions": {
3-
"target": "es2018",
3+
"target": "esnext",
4+
"useDefineForClassFields": true,
45
"module": "esnext",
5-
"lib": ["esnext"],
66
"moduleResolution": "node",
7-
"esModuleInterop": true,
87
"strict": true,
9-
"strictNullChecks": true,
8+
"jsx": "preserve",
9+
"sourceMap": true,
1010
"resolveJsonModule": true,
11-
"skipLibCheck": true,
12-
"skipDefaultLibCheck": true
11+
"isolatedModules": true,
12+
"esModuleInterop": true,
13+
"lib": ["esnext", "dom"],
14+
"skipLibCheck": true
1315
}
1416
}

0 commit comments

Comments
 (0)