astro-htaccess/tsconfig.json

16 lines
346 B
JSON
Raw Normal View History

2024-08-30 19:50:06 +00:00
{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"outDir": "./dist",
"target": "ES2022",
2024-08-30 19:58:38 +00:00
"moduleResolution": "bundler",
2024-08-30 19:50:06 +00:00
"declaration": true,
"stripInternal": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noEmit": false,
"allowImportingTsExtensions": false
},
"include": ["src"]
}