2
0
Files
bot/packages/js/tsconfig.json

19 lines
389 B
JSON
Raw Normal View History

{
"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
}
}