astro/packages/create-astro/tsconfig.json
2023-08-03 16:03:48 +01:00

13 lines
292 B
JSON

{
"extends": "../../tsconfig.base.json",
"include": ["src", "index.d.ts"],
"compilerOptions": {
"allowJs": true,
"emitDeclarationOnly": false,
"noEmit": true,
"target": "ES2022",
"module": "ES2022",
"outDir": "./dist",
"declarationDir": "./dist/types"
}
}