signal-slides/tsconfig.json
2024-12-14 21:04:49 -03:00

18 lines
421 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@assets/*": ["src/assets/*"],
"@themes/*": ["src/themes/*"]
},
"moduleResolution": "Bundler",
"strictNullChecks": true,
"allowJs": true
},
"exclude": ["dist"]
}