open-design/apps/landing-page/tsconfig.json
Zakaria a46764fb1b
Some checks failed
ci / Validate workspace (push) Has been cancelled
landing-page-ci / Validate landing page (push) Has been cancelled
landing-page-deploy / Deploy landing page (push) Has been cancelled
github-metrics / Generate repository metrics SVG (push) Has been cancelled
first-commit
2026-05-04 14:58:14 -04:00

41 lines
789 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"allowImportingTsExtensions": false,
"incremental": true,
"noEmit": true,
"paths": {
"@/*": [
"./*"
]
},
"allowJs": true
},
"include": [
".astro/types.d.ts",
"astro.config.ts",
"app/**/*",
"out/types/**/*.ts"
],
"exclude": [
"node_modules",
"out"
]
}