Scaffold project structure
Setup vcs, editor, language, and package configs for a basic site generator using TSX to build an html website.
This commit is contained in:
commit
51b458103b
9 changed files with 121 additions and 0 deletions
16
tsconfig.json
Normal file
16
tsconfig.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue