signal-slides/tsconfig.json
Карпич Дмитрий Александрович 96d056752f chore(*): change to bun and add drone
2025-05-28 11:18:04 +03:00

25 lines
646 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@assets/*": ["src/assets/*"],
"@theme/*": ["src/theme/*"],
"@theme": ["src/theme/index.css"],
"@slides/*": ["src/slides/*"],
"@utils/*": ["src/utils/*"]
},
"moduleResolution": "Bundler",
"strictNullChecks": true,
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"exactOptionalPropertyTypes": true,
"types": ["bun-types"]
},
"exclude": ["dist"]
}