-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
32 lines (29 loc) · 940 Bytes
/
Copy pathtsconfig.app.json
File metadata and controls
32 lines (29 loc) · 940 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": ["docs/.vitepress/**/*.ts", "src/**/*.ts", "src/**/*.vue"],
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"lib": ["esnext"],
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"verbatimModuleSyntax": true,
/* Vue */
"types": ["node", "vite/client", "vite-plugin-pwa/client"],
/* Convenience */
"rootDir": ".",
"paths": {
"@composables/*": ["./src/composables/*"],
"@directives/*": ["./src/directives/*"],
"@components/*": ["./src/app/components/*"],
"@app/*": ["./src/app/*"],
"@i18n/*": ["./src/i18n/*"],
"@styles/*": ["./src/styles/*"],
"@static/*": ["./src/static/*"],
"@utils/*": ["./src/utils/*"],
"@store/*": ["./src/store/*"]
}
}
}