Skip to content

Commit

Permalink
chore: more strict tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jul 8, 2024
1 parent 94778fd commit 164efa2
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"esModuleInterop": true,
"declaration": true,
"strict": true
"module": "Preserve",
"resolveJsonModule": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"noEmit": true
},
"include": ["src"]
"include": ["src", "test"]
}

0 comments on commit 164efa2

Please sign in to comment.