hornwitser.no/tsconfig.json
Hornwitser c8527f17f7 Reorganise source files into src and web
Use a more traditional source code layout with the code located in the
src/ dir and static web content in the web/ dir, while the other places
are for data not related to code or content.
2025-02-02 10:37:42 +01:00

19 lines
370 B
JSON

{
"include": ["src"],
"compilerOptions": {
"outDir": "build/node",
"rootDir": "src",
"jsx": "react-jsx",
"jsxImportSource": "antihtml",
"sourceMap": true,
"lib": ["es2023"],
"target": "es2023",
"module": "node16",
"moduleResolution": "node16",
"strict": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
}
}