hornwitser.no/tsconfig.json
Hornwitser 4236ddd5fa Reduce confusion from import elison
Set verbatimModuleSyntax to reduce possible confusion around which
imports stay and which gets removed by TypeScript's import elision.
2025-01-22 09:07:07 +01:00

20 lines
416 B
JSON

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