bun-discord-bot/tsconfig.json

13 lines
284 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,
2023-08-24 10:55:24 +02:00
"allowSyntheticDefaultImports": true,
// "bun-types" is the important part
"types": ["bun-types"]
}
}