Skip to content

Commit eadb3da

Browse files
committed
chore(tsconfig): 🧹 update compiler options
1 parent f831299 commit eadb3da

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

tsconfig.json

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
{
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"compilerOptions": {
4-
"allowJs": true,
4+
"target": "ESNext",
5+
"lib": ["dom", "dom.iterable", "esnext", "esnext.asynciterable"],
6+
"typeRoots": ["./node_modules/@types", "@types"],
7+
"moduleResolution": "NodeNext",
8+
"module": "NodeNext",
9+
"strict": true,
510
"downlevelIteration": true,
611
"esModuleInterop": true,
712
"forceConsistentCasingInFileNames": true,
8-
"incremental": true,
913
"isolatedModules": true,
1014
"jsx": "preserve",
11-
"lib": ["dom", "dom.iterable", "esnext"],
12-
"module": "ESNext",
13-
"moduleResolution": "node",
1415
"noEmit": true,
1516
"noUnusedParameters": true,
1617
"resolveJsonModule": true,
1718
"skipLibCheck": true,
18-
"strict": true,
19-
"target": "ES2021",
20-
"typeRoots": ["./node_modules/@types", "@types"]
19+
"allowJs": true
2120
},
2221
"exclude": ["node_modules"],
2322
"include": ["./**/*"],

0 commit comments

Comments
 (0)