-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
tsconfig.app.json
40 lines (37 loc) · 1.06 KB
/
tsconfig.app.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
{
"include": ["src/**/*.ts", "src/**/*.vue"],
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
/* Convenience */
"baseUrl": ".",
"paths": {
"@composables": ["./src/composables/index.ts"],
"@directives": ["./src/directives/index.ts"],
"@components/*": ["./src/app/components/*"],
"@app/*": ["./src/app/*"],
"@i18n/*": ["./src/i18n/*"],
"@storage/*": ["./src/storage/*"],
"@styles/*": ["./src/styles/*"],
"@static/*": ["./src/static/*"],
"@utils": ["./src/utils/index.ts"],
"@store/*": ["./src/store/*"]
}
}
}