diff options
author | 2023-08-24 19:51:14 -0700 | |
---|---|---|
committer | 2023-08-24 19:51:14 -0700 | |
commit | b70210a005a4fa9ed6639e618020818fb0f695e8 (patch) | |
tree | 7b2a6bbeceea8630be74ce506895407711b724c8 /test | |
parent | b9c2309c8abd6adf4229773a4531c89da912a8a5 (diff) | |
download | bun-b70210a005a4fa9ed6639e618020818fb0f695e8.tar.gz bun-b70210a005a4fa9ed6639e618020818fb0f695e8.tar.zst bun-b70210a005a4fa9ed6639e618020818fb0f695e8.zip |
Use noEmit
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, |