-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (26 loc) · 717 Bytes
/
tsconfig.json
File metadata and controls
28 lines (26 loc) · 717 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
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"skipLibCheck": true,
"types": ["vite/client", "vite-plugin-pwa/client"],
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
},
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"noEmit": true,
"jsx": "react-jsx",
"strict": false,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src", "pwa-assets.config.ts"]
/* "references": [{ "path": "./tsconfig.node.json" }] */
}