Fixed TS config file
This commit is contained in:
parent
83080ffdac
commit
db8cef826e
1 changed files with 8 additions and 11 deletions
|
|
@ -1,22 +1,20 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2023",
|
||||
"module": "NodeNext",
|
||||
"module": "esnext",
|
||||
"lib": [
|
||||
"ES2023"
|
||||
"ES2023",
|
||||
"DOM"
|
||||
],
|
||||
"types": [
|
||||
"node",
|
||||
"vite/client"
|
||||
],
|
||||
"skipLibCheck": true,
|
||||
/* Server + Vite middleware specific */
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"allowJs": true,
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
/* Keep TS as a type checker only (no emit) when running via ts-node/vite) */
|
||||
"verbatimModuleSyntax": true,
|
||||
"moduleDetection": "force",
|
||||
"noEmit": true,
|
||||
/* Linting */
|
||||
"noUnusedLocals": true,
|
||||
|
|
@ -25,7 +23,6 @@
|
|||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"include": [
|
||||
"src",
|
||||
"server"
|
||||
"src"
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue