tsconfig.app.json
769 bytes
| 1 | { |
|---|---|
| 2 | "compilerOptions": { |
| 3 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", |
| 4 | "target": "es2023", |
| 5 | "lib": ["ES2023", "DOM"], |
| 6 | "module": "esnext", |
| 7 | "types": ["vite/client"], |
| 8 | "allowArbitraryExtensions": true, |
| 9 | "skipLibCheck": true, |
| 10 | "strict": true, |
| 11 | "baseUrl": "..", |
| 12 | "paths": { "shared/*": ["shared/*"] }, |
| 13 | |
| 14 | /* Bundler mode */ |
| 15 | "moduleResolution": "bundler", |
| 16 | "allowImportingTsExtensions": true, |
| 17 | "verbatimModuleSyntax": true, |
| 18 | "moduleDetection": "force", |
| 19 | "noEmit": true, |
| 20 | "jsx": "react-jsx", |
| 21 | |
| 22 | /* Linting */ |
| 23 | "noUnusedLocals": true, |
| 24 | "noUnusedParameters": true, |
| 25 | "noFallthroughCasesInSwitch": true |
| 26 | }, |
| 27 | "include": ["src", "../shared/**/*.ts"], |
| 28 | "exclude": ["../shared/**/*.test.ts"] |
| 29 | } |
| 30 | |