sitegen/tsconfig.json

22 lines
538 B
JSON
Raw Normal View History

{
2025-06-07 02:25:06 -07:00
"compilerOptions": {
2025-06-07 16:45:45 -07:00
"allowImportingTsExtensions": true,
"baseUrl": ".",
2025-06-07 02:25:06 -07:00
"incremental": true,
2025-06-22 14:38:36 -07:00
"jsx": "react-jsxdev",
"jsxImportSource": "#engine",
"lib": ["esnext", "dom", "dom.iterable"],
2025-06-07 02:25:06 -07:00
"module": "nodenext",
2025-06-07 16:45:45 -07:00
"noEmit": true,
"outDir": ".clover/ts",
2025-06-07 02:25:06 -07:00
"paths": { "@/*": ["src/*"] },
2025-06-07 16:45:45 -07:00
"rootDir": ".",
"skipLibCheck": true,
2025-06-07 02:25:06 -07:00
"strict": true,
2025-06-15 23:42:10 -07:00
"verbatimModuleSyntax": true,
"target": "es2022",
"noUncheckedIndexedAccess": true
},
"include": ["framework/**/*", "src/**/*"]
}