diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json index e361d7ffe0..c3393de19b 100644 --- a/packages/cli/tsconfig.json +++ b/packages/cli/tsconfig.json @@ -14,5 +14,5 @@ "./package.json" ], "exclude": ["node_modules", "dist"], - "references": [{ "path": "../core" }] + "references": [{ "path": "../core" }, { "path": "../devtools" }] } diff --git a/packages/devtools/package.json b/packages/devtools/package.json index 03b874ffad..0b1ac20917 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -12,7 +12,7 @@ } }, "scripts": { - "build": "npm run build:client && tsc -p tsconfig.build.json", + "build": "npm run build:client && tsc -p tsconfig.json", "build:client": "node esbuild.client.js" }, "files": [ diff --git a/packages/devtools/tsconfig.json b/packages/devtools/tsconfig.json index fe76dc95a8..6901619de8 100644 --- a/packages/devtools/tsconfig.json +++ b/packages/devtools/tsconfig.json @@ -3,8 +3,10 @@ "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2023"], "jsx": "react-jsx", - "allowImportingTsExtensions": true, - "noEmit": true + "skipLibCheck": true, + "composite": true, + "noEmit": false, + "outDir": "dist" }, "include": ["src", "client/src"] }