astro-htaccess/tsconfig.json
2024-12-03 18:36:18 -03:00

15 lines
367 B
JSON

{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"outDir": "./dist",
"target": "ES2022",
"moduleResolution": "bundler",
"declaration": true,
"stripInternal": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noEmit": false,
"allowImportingTsExtensions": false
},
"include": ["src", ".astro/types.d.ts"]
}