-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 777 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 777 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
{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"baseUrl": ".",
"exactOptionalPropertyTypes": false,
"verbatimModuleSyntax": true,
"paths": {
"💅/*": ["src/styles/*"],
"🛠️/*": ["src/scripts/*"],
"@scripts/*": ["src/scripts/*"],
"🧱/*": ["src/components/*"],
"@components/*": ["src/components/*"],
"@article-components/*": ["src/components/article-specific/*"],
"📸/*": ["src/assets/*"],
"@assets/*": ["src/assets/*"],
"@article/*": ["src/components/article*"],
"🗺️/*": ["src/layouts/*"],
"@layouts/*": ["src/layouts/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist", "theming"]
}