hornwitser.no/tsconfig.json
Hornwitser 51b458103b Scaffold project structure
Setup vcs, editor, language, and package configs for a basic site
generator using TSX to build an html website.
2025-01-21 07:56:15 +01:00

16 lines
311 B
JSON

{
"files": ["index.tsx"],
"compilerOptions": {
"outDir": "build/node",
"jsx": "react-jsx",
"jsxImportSource": "antihtml",
"lib": ["es2023"],
"target": "es2023",
"module": "node16",
"moduleResolution": "node16",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
}
}