2
0
Files
bot/packages/bot-engine/tsconfig.json
2022-11-15 15:14:38 +01:00

25 lines
551 B
JSON

{
"compilerOptions": {
"lib": ["ES2017", "DOM"],
"target": "es5",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"jsx": "react",
"module": "ESNext",
"declaration": true,
"declarationDir": "types",
"sourceMap": true,
"outDir": "dist",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"emitDeclarationOnly": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"downlevelIteration": true
}
}