bun-discord-bot/tsconfig.json

19 lines
443 B
JSON
Raw Permalink Normal View History

2022-07-10 18:30:00 +02:00
{
"compilerOptions": {
"target": "ESNext",
"module": "Node16",
"moduleResolution": "Node16",
"baseUrl": ".",
"jsx": "react-jsx",
"jsxImportSource": "@lilybird/jsx",
"strict": true,
"allowImportingTsExtensions": true,
2023-08-24 10:55:24 +02:00
"allowSyntheticDefaultImports": true,
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["bun-types", "./globals"]
},
"include": ["src/**/*"]
}