Getting shared-core to build consistently as part of the yarn dev command.

This commit is contained in:
mike12345567 2023-08-16 16:58:35 +01:00
parent b6064f170e
commit 9bac4b8bf2
2 changed files with 12 additions and 1 deletions

View File

@ -32,7 +32,18 @@
"target": "build" "target": "build"
} }
] ]
},
"dev:builder": {
"dependsOn": [
{
"projects": [
"@budibase/types"
],
"target": "build"
}
]
} }
} }
} }
} }

View File

@ -1,7 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es6", "target": "es6",
"moduleResolution": "node", "module": "commonjs",
"lib": ["es2020"], "lib": ["es2020"],
"strict": true, "strict": true,
"noImplicitAny": true, "noImplicitAny": true,