Skip to content

Tsconfig

FieldValue
TypeSkill Resource
Source~/.copilot/skills/frontend/templates/astro-starter/tsconfig.json
DescriptionNot specified

Source Content

{
"//": "dmwd-io standard TypeScript config for Astro 5. Extends Astro's strictest preset (noImplicitAny, strictNullChecks, no unchecked indexed access) and adds the @/* path alias to src/. Run `astro check` in CI to typecheck .astro files.",
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react",
"verbatimModuleSyntax": true,
"allowJs": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
]
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist", "node_modules"]
}