app
1 month ago
components
1 month ago
dist
1 week ago
public
1 month ago
src
1 week ago
index.html
1 month ago
index.php
1 month ago
package.json
1 day ago
tsconfig.app.json
2 weeks ago
tsconfig.json
1 month ago
tsconfig.node.json
1 month ago
vite.config.ts
2 weeks ago
tsconfig.app.json
40 lines
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", |
| 4 | "target": "ES2023", |
| 5 | "useDefineForClassFields": true, |
| 6 | "lib": [ |
| 7 | "ES2023", |
| 8 | "DOM", |
| 9 | "DOM.Iterable" |
| 10 | ], |
| 11 | "module": "ESNext", |
| 12 | "types": [ |
| 13 | "vite/client" |
| 14 | ], |
| 15 | "skipLibCheck": true, |
| 16 | /* Bundler mode */ |
| 17 | "moduleResolution": "bundler", |
| 18 | "allowImportingTsExtensions": true, |
| 19 | "verbatimModuleSyntax": true, |
| 20 | "moduleDetection": "force", |
| 21 | "noEmit": true, |
| 22 | "jsx": "react-jsx", |
| 23 | /* Linting */ |
| 24 | "strict": true, |
| 25 | "noUnusedLocals": true, |
| 26 | "noUnusedParameters": true, |
| 27 | "erasableSyntaxOnly": true, |
| 28 | "noFallthroughCasesInSwitch": true, |
| 29 | "noUncheckedSideEffectImports": true, |
| 30 | "baseUrl": ".", |
| 31 | "paths": { |
| 32 | "@/*": [ |
| 33 | "./src/*" |
| 34 | ] |
| 35 | } |
| 36 | }, |
| 37 | "include": [ |
| 38 | "src" |
| 39 | ] |
| 40 | } |