mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
* WIP * WIP * Improve helptext * WIP * WIP * WIP * WIP * Clean up, implement warn_on_unrecognized_flag * Fix struct * Tweaks * Fix bunx test * Address reviews * Init and create * Updates * bunx * Tweaks * Lockfile * tweak * tweak * tweak * tweak * Remove comments * Add back origin and port * Remove logging * Updates * fmt * fix rebasing mistakes * bruh * expose node builtins for -e * add tests and fix it on windows * a * lol * okay * finish things up * Update src/deps/zig-clap/clap/streaming.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> --------- Co-authored-by: dave caruso <me@paperdave.net> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
20 lines
486 B
JSON
20 lines
486 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "nodenext",
|
|
"moduleDetection": "force",
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"allowJs": true,
|
|
"outDir": "dist",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src", "lib", "../bun-types/index.d.ts"]
|
|
}
|