electro-sb commited on
Commit
e2fecac
·
1 Parent(s): e5f09f2

Exclude vite.config.ts from TypeScript compilation

Browse files
Files changed (1) hide show
  1. web/tsconfig.json +26 -25
web/tsconfig.json CHANGED
@@ -1,26 +1,27 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "useDefineForClassFields": true,
5
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
6
- "module": "ESNext",
7
- "skipLibCheck": true,
8
- "moduleResolution": "node",
9
- "allowSyntheticDefaultImports": true,
10
- "resolveJsonModule": true,
11
- "isolatedModules": true,
12
- "noEmit": true,
13
- "jsx": "react-jsx",
14
- "strict": true,
15
- "noUnusedLocals": true,
16
- "noUnusedParameters": true,
17
- "noFallthroughCasesInSwitch": true,
18
- "baseUrl": ".",
19
- "paths": {
20
- "@/*": ["src/*"]
21
- },
22
- "types": ["vite/client", "node"]
23
- },
24
- "include": ["src", "**/*.ts", "**/*.tsx", "src/types/*.d.ts"],
25
- "references": [{ "path": "./tsconfig.node.json" }]
 
26
  }
 
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "useDefineForClassFields": true,
5
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
6
+ "module": "ESNext",
7
+ "skipLibCheck": true,
8
+ "moduleResolution": "node",
9
+ "allowSyntheticDefaultImports": true,
10
+ "resolveJsonModule": true,
11
+ "isolatedModules": true,
12
+ "noEmit": true,
13
+ "jsx": "react-jsx",
14
+ "strict": true,
15
+ "noUnusedLocals": true,
16
+ "noUnusedParameters": true,
17
+ "noFallthroughCasesInSwitch": true,
18
+ "baseUrl": ".",
19
+ "paths": {
20
+ "@/*": ["src/*"]
21
+ },
22
+ "types": ["vite/client", "node"]
23
+ },
24
+ "include": ["src", "**/*.ts", "**/*.tsx", "src/types/*.d.ts"],
25
+ "exclude": ["vite.config.ts"],
26
+ "references": [{ "path": "./tsconfig.node.json" }]
27
  }