Set up the basic layout of the site and greybox its content based on statically generated pages. Content pages uses general base layouts defined centrally to avoid duplicating code.
17 lines
330 B
JSON
17 lines
330 B
JSON
{
|
|
"include": ["content"],
|
|
"compilerOptions": {
|
|
"outDir": "build/node",
|
|
"rootDir": ".",
|
|
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "antihtml",
|
|
"lib": ["es2023"],
|
|
"target": "es2023",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|