-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (31 loc) · 1002 Bytes
/
tsconfig.json
File metadata and controls
32 lines (31 loc) · 1002 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
31
32
{
"include": ["components", "plugins", "utils", "test", "shadowless", "**/*.ts", "typing.d.ts"],
"exclude": ["node_modules/**", "dist/**", "assets", "public"],
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"target": "ESNext",
"declaration": true,
"outDir": "dist",
"types": ["./typings.d.ts"],
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"isolatedModules": false,
"strict": true,
"skipLibCheck": true,
"noImplicitAny": true,
"useUnknownInCatchVariables": false,
"inlineSourceMap": true,
"baseUrl": ".",
"experimentalDecorators": true,
"paths": {
"@/assets/*": ["assets/*"],
"@/public/*": ["public/*"],
"@/components/*": ["components/*"],
"@/shadowless/*": ["shadowless/*"],
"@/plugins/*": ["plugins/*"],
"@/utils/*": ["utils/*"]
}
}
}