bun-discord-bot/tsconfig.json

12 lines
242 B
JSON
Raw Normal View History

2022-07-10 18:30:00 +02:00
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "Node",
"allowImportingTsExtensions": true,
// "bun-types" is the important part
"types": ["bun-types"]
}
}