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

15 lines
350 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,
2023-09-23 15:58:29 +02:00
"declarationDir": "./dist/@types",
// overwrite astro/tsconfigs values
2023-09-23 15:17:33 +02:00
"noEmit": false,
"allowImportingTsExtensions": false
2023-09-22 04:43:19 +02:00
}
}