Skip to content

Commit

Permalink
(magicspace-update)
Browse files Browse the repository at this point in the history
  • Loading branch information
vilicvane committed Feb 3, 2024
1 parent 45ebf75 commit 5981744
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions general/src/composables/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"compilerOptions": {
"composite": true,
"rootDir": ".",
"outDir": "../../bld/composables"
"outDir": "../../bld/composables",
},
"references": [
{
"path": "../library"
}
]
"path": "../library",
},
],
}
4 changes: 2 additions & 2 deletions general/src/library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"composite": true,
"rootDir": ".",
"outDir": "../../bld/library"
}
"outDir": "../../bld/library",
},
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"build": "rimraf --glob */bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern --report-unused-disable-directives . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern --report-unused-disable-directives .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn build && yarn lint"
"test": "npm run lint-prettier && npm run build && npm run lint"
},
"dependencies": {
"tslib": "^2.6.2"
Expand Down
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"references": [
{
"path": "general/src/composables"
"path": "general/src/composables",
},
{
"path": "general/src/library"
"path": "general/src/library",
},
{
"path": "typescript/src/composables"
"path": "typescript/src/composables",
},
{
"path": "typescript/src/library"
}
"path": "typescript/src/library",
},
],
"files": []
"files": [],
}
10 changes: 5 additions & 5 deletions typescript/src/composables/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"compilerOptions": {
"composite": true,
"rootDir": ".",
"outDir": "../../bld/composables"
"outDir": "../../bld/composables",
},
"references": [
{
"path": "../library"
"path": "../library",
},
{
"path": "../../../general/src/library"
}
]
"path": "../../../general/src/library",
},
],
}
8 changes: 4 additions & 4 deletions typescript/src/library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"compilerOptions": {
"composite": true,
"rootDir": ".",
"outDir": "../../bld/library"
"outDir": "../../bld/library",
},
"references": [
{
"path": "../../../general/src/library"
}
]
"path": "../../../general/src/library",
},
],
}

0 comments on commit 5981744

Please sign in to comment.