mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
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>
19 lines
453 B
JSON
19 lines
453 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"moduleDetection": "force",
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"allowJs": true,
|
|
"outDir": "dist"
|
|
},
|
|
"include": [".", "../bun-types/index.d.ts"]
|
|
}
|