sitegen/tsconfig.json

20 lines
498 B
JSON

{
"compilerOptions": {
"allowImportingTsExtensions": true,
"baseUrl": ".",
"incremental": true,
"jsx": "react-jsx",
"jsxImportSource": "#ssr",
"lib": ["dom", "esnext", "esnext.iterator"],
"module": "nodenext",
"noEmit": true,
"outDir": ".clover/ts",
"paths": { "@/*": ["src/*"] },
"rootDir": ".",
"skipLibCheck": true,
"strict": true,
"verbaitimModuleSyntax": true,
"target": "es2022"
},
"include": ["framework/**/*", "src/**/*"]
}