diff options
author | 2023-05-23 15:02:39 -0700 | |
---|---|---|
committer | 2023-05-23 15:02:39 -0700 | |
commit | 5b0fea7093e53cf1aa7022bbe1f5dc1ed1f4af74 (patch) | |
tree | b58d8afbc7b3c5e3b4d5e0d0885fc6d7d742a55b /src | |
parent | 21002ed4055ddfec8413c56672839f2a02843894 (diff) | |
download | bun-5b0fea7093e53cf1aa7022bbe1f5dc1ed1f4af74.tar.gz bun-5b0fea7093e53cf1aa7022bbe1f5dc1ed1f4af74.tar.zst bun-5b0fea7093e53cf1aa7022bbe1f5dc1ed1f4af74.zip |
fix bun init and update node vm docs (#3014)
Diffstat (limited to 'src')
-rw-r--r-- | src/__global.zig | 2 | ||||
-rw-r--r-- | src/cli/tsconfig-for-init.json | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/__global.zig b/src/__global.zig index 9e2887cce..e426cd595 100644 --- a/src/__global.zig +++ b/src/__global.zig @@ -49,7 +49,7 @@ pub inline fn getStartTime() i128 { pub const version: @import("./install/semver.zig").Version = .{ .major = 0, - .minor = 5, + .minor = 6, .patch = build_id, }; diff --git a/src/cli/tsconfig-for-init.json b/src/cli/tsconfig-for-init.json index b8cfbf636..29f8aa003 100644 --- a/src/cli/tsconfig-for-init.json +++ b/src/cli/tsconfig-for-init.json @@ -1,8 +1,6 @@ { "compilerOptions": { - "lib": [ - "ESNext" - ], + "lib": ["ESNext"], "module": "esnext", "target": "esnext", "moduleResolution": "bundler", @@ -15,6 +13,7 @@ "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "allowJs": true, + "noEmit": true, "types": [ "bun-types" // add Bun global ] |