diff options
author | 2023-08-23 20:35:51 +0300 | |
---|---|---|
committer | 2023-08-23 10:35:51 -0700 | |
commit | b01764b31ee768872f3689d489b0e89914a8e460 (patch) | |
tree | 95297ffe41015cb8c3bb7b84449ada53d6d6b691 /packages | |
parent | 851763174e77be5dfe409ffb3ee4cb79659cbde4 (diff) | |
download | bun-b01764b31ee768872f3689d489b0e89914a8e460.tar.gz bun-b01764b31ee768872f3689d489b0e89914a8e460.tar.zst bun-b01764b31ee768872f3689d489b0e89914a8e460.zip |
Fix more types. (#4273)
Diffstat (limited to 'packages')
-rw-r--r-- | packages/bun-plugin-server-components/tsconfig.json | 13 | ||||
-rw-r--r-- | packages/bun-plugin-yaml/tsconfig.json | 13 | ||||
-rw-r--r-- | packages/web-inspector-bun/tsconfig.json | 2 |
3 files changed, 12 insertions, 16 deletions
diff --git a/packages/bun-plugin-server-components/tsconfig.json b/packages/bun-plugin-server-components/tsconfig.json index 910d88534..ca15ab14a 100644 --- a/packages/bun-plugin-server-components/tsconfig.json +++ b/packages/bun-plugin-server-components/tsconfig.json @@ -1,13 +1,13 @@ { "compilerOptions": { - "lib": [ - "ESNext" - ], + "lib": ["ESNext"], "module": "esnext", "target": "esnext", "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, + "emitDeclarationOnly": true, + "composite": true, "strict": true, "downlevelIteration": true, "skipLibCheck": true, @@ -19,8 +19,5 @@ "bun-types" // add Bun global ] }, - "include": [ - "**/*.ts", - "modules.d.ts" - ] -}
\ No newline at end of file + "include": ["**/*.ts", "modules.d.ts"] +} diff --git a/packages/bun-plugin-yaml/tsconfig.json b/packages/bun-plugin-yaml/tsconfig.json index 910d88534..ca15ab14a 100644 --- a/packages/bun-plugin-yaml/tsconfig.json +++ b/packages/bun-plugin-yaml/tsconfig.json @@ -1,13 +1,13 @@ { "compilerOptions": { - "lib": [ - "ESNext" - ], + "lib": ["ESNext"], "module": "esnext", "target": "esnext", "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, + "emitDeclarationOnly": true, + "composite": true, "strict": true, "downlevelIteration": true, "skipLibCheck": true, @@ -19,8 +19,5 @@ "bun-types" // add Bun global ] }, - "include": [ - "**/*.ts", - "modules.d.ts" - ] -}
\ No newline at end of file + "include": ["**/*.ts", "modules.d.ts"] +} diff --git a/packages/web-inspector-bun/tsconfig.json b/packages/web-inspector-bun/tsconfig.json index 1760229b2..d2f5d2892 100644 --- a/packages/web-inspector-bun/tsconfig.json +++ b/packages/web-inspector-bun/tsconfig.json @@ -6,6 +6,8 @@ "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, + "emitDeclarationOnly": true, + "composite": true, "downlevelIteration": true, "skipLibCheck": true, "jsx": "preserve", |