fix(build): correct devtools project references and tsconfig inheritence

This commit is contained in:
Sehoon Shon
2026-03-25 03:24:38 -04:00
parent 24f7f4f23d
commit d1ff98f842
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -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
},
+1
View File
@@ -3,6 +3,7 @@
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"jsx": "react-jsx",
"composite": true,
"allowImportingTsExtensions": true,
"noEmit": true
},