Skip to content

Commit f912ec2

Browse files
committed
chore: update tsconfig to be more strict
1 parent 8787407 commit f912ec2

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

tsconfig.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
{
22
"compilerOptions": {
33
"target": "ESNext",
4-
"module": "ESNext",
5-
"moduleResolution": "Node",
6-
"esModuleInterop": true,
7-
"strict": true
4+
"module": "Preserve",
5+
"resolveJsonModule": true,
6+
"esModuleInterop": false,
7+
"allowSyntheticDefaultImports": true,
8+
"skipLibCheck": true,
9+
"allowJs": true,
10+
"checkJs": true,
11+
"strict": true,
12+
"verbatimModuleSyntax": true,
13+
"isolatedModules": true,
14+
"forceConsistentCasingInFileNames": true,
15+
"noImplicitOverride": true,
16+
"noEmit": true
817
},
9-
"include": ["src"]
18+
"include": ["src", "test"]
1019
}

0 commit comments

Comments
 (0)