-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (26 loc) · 775 Bytes
/
tsconfig.json
File metadata and controls
27 lines (26 loc) · 775 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
{
"extends": "astro/tsconfigs/base",
"include": ["src/**/*"],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"allowJs": true,
"baseUrl": ".",
"paths": {
"@src/*": ["src/*"],
"@components/*": ["src/components/*"],
"@atoms/*": ["src/components/atoms/*"],
"@molecules/*": ["src/components/molecules/*"],
"@organisms/*": ["src/components/organisms/*"],
"@layouts/*": ["src/layouts/*"],
"@utils/*": ["src/utils/*"],
"@content/*": ["src/content/*"],
"@pages/*": ["src/pages/*"],
"@controllers/*": ["src/controllers/*"],
"@services/*": ["src/services/*"],
"@data/*": ["src/data/*"],
"@sass/*": ["src/sass/*"],
"@img/*": ["public/img/*"]
}
}
}