skylinebulletin/tsconfig.node.json

20 lines
463 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
// 👇 This is the important part
"jsx": "react-jsx",
"types": ["react", "react-dom"]
},
"include": ["src"]
}