Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Oct 17, 2024
1 parent 2d76964 commit dcbc8c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 23 deletions.
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": "."
}
}

0 comments on commit dcbc8c0

Please sign in to comment.