-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 945 Bytes
/
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
{
"extends": "astro/tsconfigs/strict",
"exclude": ["node_modules", "src/tests/**/*.spec.ts", "src/tests/**/*.test.ts"],
"compilerOptions": {
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@composables/*": ["src/composable/*"],
"@layouts/*": ["src/layouts/*"],
"@lib/*": ["src/lib/*"],
"@utils/*": ["src/utils/*"],
"@stores/*": ["src/stores/*"],
"@ts_types/*": ["src/types/*"],
"@features/*": ["src/features/*"],
"@services/*": ["src/services/*"],
"@assets/*": ["src/assets/*"]
},
"types": [
"vitest/globals",
"unplugin-icons/types/astro",
"unplugin-icons/types/vue",
"vite-plugin-pwa/client",
"vite-plugin-pwa/info",
"vite-plugin-pwa/pwa-assets"
],
// https://bobbyhadz.com/blog/typescript-module-can-only-be-default-imported-esmoduleinterop
"esModuleInterop": true
}
}