2
0
Files
bot/packages/js/tsconfig.json
Baptiste Arnaud 1a3869ae6d ⚗️ Implement bot v2 MVP (#194)
Closes #190
2022-12-22 17:02:34 +01:00

19 lines
389 B
JSON

{
"extends": "tsconfig/base.json",
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"jsx": "preserve",
"jsxImportSource": "solid-js",
"module": "ESNext",
"target": "ESNext",
"declaration": true,
"declarationDir": "dts",
"emitDeclarationOnly": true
}
}