Tsconfig
| Field | Value |
|---|---|
| Type | Skill Resource |
| Source | ~/.copilot/skills/frontend/templates/astro-starter/tsconfig.json |
| Description | Not 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"]}