hornwitser.no/tsconfig.json

21 lines
403 B
JSON
Raw Normal View History

{
2025-01-22 05:29:54 +01:00
"files": ["cli.ts"],
"include": ["content", "utils"],
"compilerOptions": {
2025-01-22 09:11:29 +01:00
"outDir": "build/node",
"rootDir": ".",
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
}
}