Twan07 commited on
Commit
55f4505
·
verified ·
1 Parent(s): 1a60553

Update tsconfig.json

Browse files
Files changed (1) hide show
  1. tsconfig.json +7 -14
tsconfig.json CHANGED
@@ -1,20 +1,13 @@
1
  {
2
  "compilerOptions": {
3
  "target": "ES2020",
4
- "useDefineForClassFields": true,
5
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
6
  "module": "ESNext",
7
- "skipLibCheck": true,
8
- "moduleResolution": "bundler",
9
- "allowImportingTsExtensions": true,
10
- "resolveJsonModule": true,
11
- "isolatedModules": true,
12
- "noEmit": true,
13
- "jsx": "react-jsx",
14
  "strict": true,
15
- "noUnusedLocals": false,
16
- "noUnusedParameters": false,
17
- "noFallthroughCasesInSwitch": true
18
  },
19
- "include": ["**/*.ts", "**/*.tsx"]
20
- }
 
1
  {
2
  "compilerOptions": {
3
  "target": "ES2020",
 
 
4
  "module": "ESNext",
5
+ "moduleResolution": "Node",
6
+ "outDir": "dist",
7
+ "rootDir": ".",
8
+ "esModuleInterop": true,
 
 
 
9
  "strict": true,
10
+ "skipLibCheck": true
 
 
11
  },
12
+ "include": ["server"]
13
+ }