Files
zkldi_Tachi/bot/tsconfig.json
T

31 lines
548 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"baseUrl": "src",
"outDir": "./js",
"lib": [
"DOM" // hack workaround. URLSearchParams must be imported, yet
// discordJS carelessly uses it without being imported
// as if it were a DOM type.
// Sad!
],
"types": [
"node",
],
"paths": {
"tachi-common": [
"../../common/src"
],
"tachi-common/*": [
"../../common/src/*"
]
},
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.test.ts"
]
}