Files
website/tsconfig.json
2026-09-07 14:56:42 +00:00

31 lines
669 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
/* Incremental compilation for faster re-runs of `tsc --noEmit` */
"incremental": true,
"tsBuildInfoFile": "./.tsbuildinfo",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}