forked from hytopiagg/world-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 903 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true, // Allows existing JS files
"skipLibCheck": true, // Speeds up build by skipping type checks on node_modules
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false, // You can enable this later for full type safety
"forceConsistentCasingInFileNames": true,
"noEmit": true, // Don't output compiled files, just type-check
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx", // Use "react" if you're on React <17
"noFallthroughCasesInSwitch": true,
"typeRoots": ["./node_modules/@types", "./src"]
},
"include": ["src", "src/**/*.d.ts"],
"exclude": ["node_modules"]
}