Setup vcs, editor, language, and package configs for a basic site generator using TSX to build an html website.
16 lines
311 B
JSON
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
|
|
}
|
|
}
|