chore(repo): do not use tsconfig paths for release (#14757)
This commit is contained in:
parent
2f4f0f0ab2
commit
6f507eca5d
@ -16,7 +16,7 @@
|
|||||||
"outputPath": "dist/nx-dev/nx-dev",
|
"outputPath": "dist/nx-dev/nx-dev",
|
||||||
"commands": [
|
"commands": [
|
||||||
"nx run nx-dev:sitemap",
|
"nx run nx-dev:sitemap",
|
||||||
"ts-node -P ./scripts/tsconfig.scripts.json ./scripts/documentation/internal-link-checker.ts"
|
"ts-node -P ./scripts/tsconfig.release.json ./scripts/documentation/internal-link-checker.ts"
|
||||||
],
|
],
|
||||||
"parallel": false
|
"parallel": false
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
"check-documentation-map": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/documentation/map-link-checker.ts",
|
"check-documentation-map": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/documentation/map-link-checker.ts",
|
||||||
"e2e-start-local-registry": "node ./scripts/e2e-start-local-registry.js",
|
"e2e-start-local-registry": "node ./scripts/e2e-start-local-registry.js",
|
||||||
"e2e-build-package-publish": "ts-node -P ./scripts/tsconfig.e2e.json ./scripts/e2e-build-package-publish.ts",
|
"e2e-build-package-publish": "ts-node -P ./scripts/tsconfig.e2e.json ./scripts/e2e-build-package-publish.ts",
|
||||||
"nx-release": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/nx-release",
|
"nx-release": "ts-node -P ./scripts/tsconfig.release.json ./scripts/nx-release",
|
||||||
"prepublishOnly": "node ./scripts/update-package-group.js",
|
"prepublishOnly": "node ./scripts/update-package-group.js",
|
||||||
"version": "npx prettier lerna.json --write",
|
"version": "npx prettier lerna.json --write",
|
||||||
"depcheck": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/depcheck",
|
"depcheck": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/depcheck",
|
||||||
|
|||||||
9
scripts/tsconfig.release.json
Normal file
9
scripts/tsconfig.release.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"extends": "../tsconfig.base.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "../scripts/tools-out",
|
||||||
|
"module": "commonjs",
|
||||||
|
"types": ["node"]
|
||||||
|
},
|
||||||
|
"include": ["**/*.ts"]
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user