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
|
|
|
|
},
|
2024-12-03 21:35:16 +00:00
|
|
|
"include": ["src", ".astro/types.d.ts"]
|
2024-08-30 19:50:06 +00:00
|
|
|
}
|