hornwitser.no/tsconfig.json

20 lines
370 B
JSON
Raw Normal View History

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