chore(repo): do not use tsconfig paths for release (#14757)

This commit is contained in:
Jason Jean 2023-02-01 17:17:11 -05:00 committed by GitHub
parent 2f4f0f0ab2
commit 6f507eca5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View File

@ -16,7 +16,7 @@
"outputPath": "dist/nx-dev/nx-dev",
"commands": [
"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
}

View File

@ -13,7 +13,7 @@
"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-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",
"version": "npx prettier lerna.json --write",
"depcheck": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/depcheck",

View File

@ -0,0 +1,9 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../scripts/tools-out",
"module": "commonjs",
"types": ["node"]
},
"include": ["**/*.ts"]
}