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
2023-09-23 14:17:33 +01:00

14 lines
310 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": ["src"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"outDir": "./dist",
"types": ["vite/client"],
"declaration": true,
// ovewrite astro/tsconfigs values
"noEmit": false,
"allowImportingTsExtensions": false
}
}