This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/tsconfig.json
2025-03-08 09:14:54 +01:00

27 lines
895 B
JSON

{
"compilerOptions": {
"strictNullChecks": true,
// Enable top-level await, and other modern ESM features.
"target": "ESNext",
"allowJs": true,
"module": "NodeNext",
"moduleResolution": "nodenext",
"jsx": "react",
// Enable node-style module resolution, for things like npm package imports.
// Enable stricter transpilation for better output.
"isolatedModules": true,
// Astro will directly run your TypeScript code, no transpilation needed.
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"lib": ["DOM", "ES2015"],
"resolveJsonModule": true,
"paths": {
"@/*": ["src/*"],
"config/*": ["src/app/*"]
}
},
"include": [".astro/types.d.ts", "**/*.ts", "**/*.tsx", "**/*.astro", "src/content/resources/software-as.mdx"],
}