hk_bot/tsconfig.json

20 lines
474 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "Node",
"target": "ES2022",
"jsx": "react",
"strictNullChecks": true,
"strictFunctionTypes": true,
"esModuleInterop": true,
"skipLibCheck": true, // due @ulixee
// "allowSyntheticDefaultImports":true,
"outDir": "build"
},
"exclude": [
"interfaces",
"node_modules",
"**/node_modules/*"
]
}