-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 717 Bytes
/
tsconfig.json
File metadata and controls
26 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
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"target": "es2017",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"baseUrl": ".",
"allowJs": true,
"checkJs": true,
"sourceMap": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"paths": {
"@utils/*": ["interface/utils/*"],
"@components/*": ["interface/components/*"],
"@stores/*": ["interface/stores/*"],
}
},
"include": ["interface/**/*.d.ts", "interface/**/*.ts", "interface/**/*.js", "interface/**/*.svelte", "libraries/**/*.d.ts", "libraries/**/*.ts"],
"exclude": ["dist"]
}