1{
2 "compilerOptions": {
3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4 "target": "es2023",
5 "lib": ["ES2023", "DOM", "WebWorker"],
6 "module": "esnext",
7 "types": ["vite/client"],
8 "allowArbitraryExtensions": true,
9 "skipLibCheck": true,
11 /* Bundler mode */
12 "moduleResolution": "bundler",
13 "allowImportingTsExtensions": true,
14 "verbatimModuleSyntax": true,
15 "moduleDetection": "force",
16 "noEmit": true,
17 "jsx": "react-jsx",
19 /* Linting */
20 "noUnusedLocals": true,
21 "noUnusedParameters": true,
22 "erasableSyntaxOnly": true,
23 "noFallthroughCasesInSwitch": true
24 },
25 "include": ["src"]
26}