-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (31 loc) · 977 Bytes
/
tsconfig.json
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
31
32
33
34
35
{
"compilerOptions": {
// == Paths
"baseUrl": ".",
"paths": {
"~/*": ["app/*"]
},
// == Language
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"module": "ESNext",
"esModuleInterop": true,
"skipDefaultLibCheck": true /* Skip type checking .d.ts files that are included with TypeScript. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
// == Mode
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"noEmit": true,
// == Linting
"strict": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true
// == Plugins
// "plugins": [{ "name": "vite-plugin-iso-import" }]
},
"include": ["app", "typings"],
"references": [{ "path": "./tsconfig.node.json" }]
}