mirror of
https://github.com/kuhyx/steam-backlog-enforcer.git
synced 2026-07-04 13:23:18 +02:00
25 lines
644 B
JSON
25 lines
644 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
|
|
"target": "es2023",
|
||
|
|
"lib": ["ES2023", "DOM"],
|
||
|
|
"module": "esnext",
|
||
|
|
"types": ["vite/client"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"erasableSyntaxOnly": true,
|
||
|
|
"noFallthroughCasesInSwitch": true
|
||
|
|
},
|
||
|
|
"include": ["src"],
|
||
|
|
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/test"]
|
||
|
|
}
|