From 4c107eba8129a121c15f6651fb8a564c614d4af2 Mon Sep 17 00:00:00 2001 From: Ravi Chodavarapu Date: Thu, 4 Jan 2024 12:35:05 -0500 Subject: [PATCH] ESNext module should work --- tsconfig.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 190d3c9..020cc2c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,9 @@ { "compilerOptions": { - "lib": ["ES2015"], - "module": "ES2015", + "lib": [ + "ES2015" + ], + "module": "ESNext", "target": "ES2015", "moduleResolution": "bundler", "moduleDetection": "force", @@ -19,5 +21,10 @@ "bun-types" // add Bun global ] }, - "include": ["lib/**/*.ts", "cli.ts", "index.ts", "package.json"] -} + "include": [ + "lib/**/*.ts", + "cli.ts", + "index.ts", + "package.json" + ] +} \ No newline at end of file