astro-htaccess/tsconfig.json
2024-08-30 16:58:38 -03:00

15 lines
346 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"]
}