1
0
mirror of https://github.com/kremalicious/astro-redirect-from.git synced 2024-10-22 03:12:43 +02:00
astro-redirect-from/tsconfig.json

14 lines
310 B
JSON
Raw Normal View History

2023-09-22 04:43:19 +02:00
{
"extends": "astro/tsconfigs/strict",
"include": ["src"],
2023-09-22 14:17:25 +02:00
"exclude": ["node_modules", "dist"],
2023-09-22 04:43:19 +02:00
"compilerOptions": {
"outDir": "./dist",
2023-09-23 15:17:33 +02:00
"types": ["vite/client"],
"declaration": true,
// ovewrite astro/tsconfigs values
"noEmit": false,
"allowImportingTsExtensions": false
2023-09-22 04:43:19 +02:00
}
}