-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.json
More file actions
20 lines (20 loc) · 646 Bytes
/
tsconfig.json
File metadata and controls
20 lines (20 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"types": ["vite/client"],
"paths": {
"@components/*": ["src/components/*"],
"@templates/*": ["src/templates/*"],
"@blocks/*": ["src/blocks/*"],
"@static/*": ["src/static/*"],
"@img/*": ["public/img/*"],
"@playground/*": ["src/playground/*"],
"@utils/*": ["src/utils/*"],
"@data": ["src/data.ts"],
"@helpers": ["src/helpers.js"],
"@e2e": ["src/tests/e2e/Playwright.ts"]
}
},
"include": ["./src/**/*"]
}