-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 849 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"lib": ["ESNext", "DOM"],
"jsx": "react-jsx",
"jsxImportSource": "react",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"allowJs": false,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@frontend/*": ["./frontend/src/*"],
"@common/*": ["./common/*"]
},
"types": ["@cloudflare/workers-types", "vite/client"],
"allowImportingTsExtensions": true
},
"include": ["src", "frontend/src", "common"],
"exclude": ["node_modules", "dist", "frontend/dist"]
}