0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/upgrade/tsconfig.json

15 lines
327 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
2023-11-27 18:02:46 -05:00
"include": ["src", "index.d.ts"],
"compilerOptions": {
"allowJs": true,
"emitDeclarationOnly": false,
"noEmit": true,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"outDir": "./dist",
"declarationDir": "./dist/types"
}
}