build(language-service): fix tsconfig needed for language-service rollup (#14717)
This commit is contained in:
parent
3c9a46c231
commit
932a02f1c5
6
build.sh
6
build.sh
|
@ -235,9 +235,9 @@ do
|
|||
$TSC -p ${SRCDIR}/tsconfig-static.json
|
||||
fi
|
||||
|
||||
if [[ -e ${SRCDIR}/tsconfig-2015.json ]]; then
|
||||
echo "====== [${PACKAGE}]: COMPILING (ES2015): ${TSC} -p ${SRCDIR}/tsconfig-2015.json"
|
||||
${TSC} -p ${SRCDIR}/tsconfig-2015.json
|
||||
if [[ -e ${SRCDIR}/tsconfig-esm5.json ]]; then
|
||||
echo "====== [${PACKAGE}]: COMPILING (ESM/ES5): ${TSC} -p ${SRCDIR}/tsconfig-esm5.json"
|
||||
${TSC} -p ${SRCDIR}/tsconfig-esm5.json
|
||||
fi
|
||||
|
||||
if [[ ${PACKAGE} == benchpress ]]; then
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"extends": "./tsconfig-build",
|
||||
"compilerOptions": {
|
||||
"module": "es2015",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "../../../dist/esm/compiler"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"extends": "./tsconfig-build",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../../dist/esm/compiler",
|
||||
"target": "es5"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,8 @@
|
|||
{
|
||||
"extends": "./tsconfig-build",
|
||||
"compilerOptions": {
|
||||
"module": "es2015",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "../../../dist/esm/core"
|
||||
"outDir": "../../../dist/esm/core",
|
||||
"target": "es5"
|
||||
},
|
||||
"files": [
|
||||
"index.ts",
|
Loading…
Reference in New Issue