-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
45 lines (45 loc) · 1.19 KB
/
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
36
37
38
39
40
41
42
43
44
45
{
"include": [
"env.d.ts",
"src/**/*",
"src/**/*.vue",
"src/**/*.ts",
"src/**/*.json",
"cypress/support/component.*",
"cypress/support/commands.ts"
],
"exclude": ["src/stories/**"],
"compilerOptions": {
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@components/*": ["./src/components/*"],
"@directives/*": ["./src/directives/*"],
"@services/*": ["./src/services/*"],
"@models/*": ["./src/models/*"],
"@utils/*": ["./src/utils/*"],
"@/*": ["./src/*"]
},
"types": ["@intlify/unplugin-vue-i18n/messages", "vite/client"],
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"declaration": true,
"emitDeclarationOnly": true,
"sourceMap": true,
"isolatedModules": true,
"moduleResolution": "bundler",
"target": "ESNext",
"module": "ESNext",
"lib": ["esnext", "dom", "dom.iterable"],
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true
}
}