15 lines
367 B
JSON
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"]
|
|
}
|