Skip to content

Commit

Permalink
build: don't extend svelte-kit config
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnderScorer committed Aug 23, 2023
1 parent 6119025 commit 6c0e9ce
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"preserveValueImports": true,
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
}
"strict": true,
"moduleResolution": "node",
"module": "esnext",
"target": "esnext"
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.svelte"
],
"exclude": [
"node_modules/**",
]
}

0 comments on commit 6c0e9ce

Please sign in to comment.