diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/js/third_party/es-module-lexer/tsconfig.json | 3 | ||||
-rw-r--r-- | test/tsconfig.json | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test/js/third_party/es-module-lexer/tsconfig.json b/test/js/third_party/es-module-lexer/tsconfig.json index 7cf08cdb5..1449bc3d9 100644 --- a/test/js/third_party/es-module-lexer/tsconfig.json +++ b/test/js/third_party/es-module-lexer/tsconfig.json @@ -6,7 +6,7 @@ "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, - "emitDeclarationOnly": true, + "noEmit": true, "composite": true, "strict": true, "downlevelIteration": true, @@ -15,7 +15,6 @@ "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "allowJs": true, - "noEmit": true, "types": [ "bun-types" // add Bun global ] diff --git a/test/tsconfig.json b/test/tsconfig.json index dcb869c93..af2af2bb5 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -1,14 +1,13 @@ { "include": [".", "../packages/bun-types/index.d.ts"], "compilerOptions": { - "noEmit": true, "lib": ["ESNext"], "module": "ESNext", "target": "ESNext", "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, - "emitDeclarationOnly": true, + "noEmit": true, "composite": true, "strict": true, "downlevelIteration": true, |