Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparations for PB Element Extension #4336

Merged
merged 9 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
  • Loading branch information
adrians5j committed Oct 17, 2024
commit dcbc8c0574596a982ea435550a5c6f19c1a9f612
15 changes: 4 additions & 11 deletions packages/cli-plugin-extensions/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
{
"extends": "../../tsconfig.build.json",
"include": [
"src"
],
"references": [
],
"include": ["src"],
"references": [],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"declarationDir": "./dist",
"paths": {
"~/*": [
"./src/*"
],
"~tests/*": [
"./__tests__/*"
]
"~/*": ["./src/*"],
"~tests/*": ["./__tests__/*"]
},
"baseUrl": "."
}
Expand Down
16 changes: 4 additions & 12 deletions packages/cli-plugin-extensions/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
{
"extends": "../../tsconfig.json",
"include": [
"src",
"__tests__"
],
"references": [
],
"include": ["src", "__tests__"],
"references": [],
"compilerOptions": {
"rootDirs": [
"./src",
"./__tests__"
],
"rootDirs": ["./src", "./__tests__"],
"outDir": "./dist",
"declarationDir": "./dist",
"paths": {
},
"paths": {},
"baseUrl": "."
}
}
Loading