diff --git a/packages/devtools/tsconfig.build.json b/packages/devtools/tsconfig.build.json index 80b71abdda..3e2a05b96d 100644 --- a/packages/devtools/tsconfig.build.json +++ b/packages/devtools/tsconfig.build.json @@ -1,11 +1,12 @@ { - "extends": "../../tsconfig.json", + "extends": "./tsconfig.json", "compilerOptions": { "outDir": "dist/src", "composite": true, "declaration": true, "sourceMap": true, "noEmit": false, + "allowImportingTsExtensions": false, "incremental": true, "verbatimModuleSyntax": false }, diff --git a/packages/devtools/tsconfig.json b/packages/devtools/tsconfig.json index fe76dc95a8..c3c1e9e8a0 100644 --- a/packages/devtools/tsconfig.json +++ b/packages/devtools/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2023"], "jsx": "react-jsx", + "composite": true, "allowImportingTsExtensions": true, "noEmit": true },