-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 1.44 KB
/
Copy pathtsconfig.json
File metadata and controls
42 lines (42 loc) · 1.44 KB
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
36
37
38
39
40
41
42
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@Icons/*": ["./src/Assets/Icon/*"],
"@IconsV2/*": ["./src/Assets/IconV2/*"],
"@Illustrations/*": ["./src/Assets/Illustration/*"],
"@Sounds/*": ["./src/Assets/Sounds/*"],
"@Images/*": ["./src/Assets/Img/*"],
"@Common/*": ["./src/Common/*"],
"@Shared/*": ["./src/Shared/*"],
"@Pages/*": ["./src/Pages/*"],
"@PagesDevtron2.0/*": ["./src/Pages-Devtron-2.0/*"],
"codemirror-json-schema/yaml": ["./node_modules/codemirror-json-schema/dist/yaml"]
},
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"declaration": true,
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false,
"types": ["vite/client"]
},
"include": ["src"],
"exclude": ["src/**/*.spec.ts", "src/**/*.spec.tsx", "src/**/*.test.ts", "src/**/*.test.tsx"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}