Skip to content

Commit 588351c

Browse files
committed
Revert tsconfig
1 parent bd4ac55 commit 588351c

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

tsconfig.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22
"compilerOptions": {
33
"target": "es2017",
44
"module": "es2022",
5-
"strict": true,
5+
"moduleResolution": "bundler",
6+
"rootDir": "src",
7+
"outDir": "dist",
68
"esModuleInterop": true,
79
"forceConsistentCasingInFileNames": true,
8-
"moduleResolution": "bundler",
10+
"strict": true,
911
"skipLibCheck": true,
10-
"rootDir": "src",
11-
"outDir": "dist"
12+
"resolveJsonModule": true,
13+
"declaration": true,
14+
"declarationMap": true,
15+
"sourceMap": true,
16+
"noUnusedLocals": true,
17+
"noUnusedParameters": true,
18+
"noImplicitReturns": true,
19+
"noFallthroughCasesInSwitch": true,
20+
"allowSyntheticDefaultImports": true,
21+
"isolatedModules": true,
1222
},
1323
"include": [
1424
"src/**/*"

0 commit comments

Comments
 (0)