diff options
author | 2023-08-23 20:35:51 +0300 | |
---|---|---|
committer | 2023-08-23 10:35:51 -0700 | |
commit | b01764b31ee768872f3689d489b0e89914a8e460 (patch) | |
tree | 95297ffe41015cb8c3bb7b84449ada53d6d6b691 /test | |
parent | 851763174e77be5dfe409ffb3ee4cb79659cbde4 (diff) | |
download | bun-b01764b31ee768872f3689d489b0e89914a8e460.tar.gz bun-b01764b31ee768872f3689d489b0e89914a8e460.tar.zst bun-b01764b31ee768872f3689d489b0e89914a8e460.zip |
Fix more types. (#4273)
Diffstat (limited to 'test')
-rw-r--r-- | test/js/third_party/es-module-lexer/tsconfig.json | 2 | ||||
-rw-r--r-- | test/tsconfig.json | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/test/js/third_party/es-module-lexer/tsconfig.json b/test/js/third_party/es-module-lexer/tsconfig.json index 29f8aa003..7cf08cdb5 100644 --- a/test/js/third_party/es-module-lexer/tsconfig.json +++ b/test/js/third_party/es-module-lexer/tsconfig.json @@ -6,6 +6,8 @@ "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, + "emitDeclarationOnly": true, + "composite": true, "strict": true, "downlevelIteration": true, "skipLibCheck": true, diff --git a/test/tsconfig.json b/test/tsconfig.json index de9a0a544..dcb869c93 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -8,6 +8,8 @@ "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, + "emitDeclarationOnly": true, + "composite": true, "strict": true, "downlevelIteration": true, "skipLibCheck": true, |