Files
bun.sh/packages/bun-vscode/tsconfig.json
Alistair Smith 4117af6e46 feat(vscode-extension) error reporting, qol (#15261)
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
Co-authored-by: Ashcon Partovi <ashcon@partovi.net>
Co-authored-by: Electroid <Electroid@users.noreply.github.com>
Co-authored-by: Meghan Denny <meghan@bun.sh>
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
2024-11-22 02:55:21 -08:00

15 lines
368 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"target": "ESNext",
"module": "ESNext",
"declaration": true,
"esModuleInterop": true,
"isolatedModules": false,
"skipLibCheck": true,
"strict": true
},
"include": ["src", "test", "types", "../../bun-devtools", "../../bun-debug-adapter-protocol"],
"exclude": ["node_modules"]
}