bun-discord-bot/tsconfig.json
Jozef Steinhübl 16c842808d
refactor!: rewrite (#32)
Thanks @Didas-git for big help
https://github.com/xHyroM/bun-discord-bot/pull/31

---------

Co-authored-by: DidaS <didasoficial@gmail.com>
2023-12-30 16:54:59 +01:00

17 lines
412 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "Node16",
"moduleResolution": "Node16",
"baseUrl": ".",
"jsx": "react-jsx",
"jsxImportSource": "@lilybird/jsx",
"strict": true,
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"skipLibCheck": true,
"types": ["bun-types", "./globals"]
},
"include": ["src/**/*"]
}