From 5a9e381d84305de9a662a1ea8a95d1490306b9b3 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Mon, 4 Apr 2022 06:59:34 -0700 Subject: Fix missing --- integration/bunjs-only-snippets/tsconfig.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'integration/bunjs-only-snippets') diff --git a/integration/bunjs-only-snippets/tsconfig.json b/integration/bunjs-only-snippets/tsconfig.json index fc416b882..05df31d44 100644 --- a/integration/bunjs-only-snippets/tsconfig.json +++ b/integration/bunjs-only-snippets/tsconfig.json @@ -1,12 +1,13 @@ { "compilerOptions": { "lib": ["ESNext"], - "allowJs": true, - "checkJs": true, - "noEmit": true, - "moduleResolution": "node", - "downlevelIteration": true, "module": "esnext", - "types": ["../../types/bun"] + "target": "esnext", + "typeRoots": ["../../types"], + "types": ["bun"], + "baseUrl": ".", + "paths": { + "foo/bar": ["baz.js"] + } } } -- cgit v1.2.3