fix(web): child project tsconfig.json references

This commit is contained in:
Joshua A. Horton 2023-05-18 10:07:28 +07:00
parent a95a091fcc
commit f470a7cc96
10 changed files with 27 additions and 17 deletions

View file

@ -18,7 +18,7 @@
"include": [ "**/*.ts" ],
"references": [
{ "path": "../../../../common/web/keyman-version" },
{ "path": "../../../../common/web/utils" }
{ "path": "../../engine/attachment" },
{ "path": "../../engine/main" }
]
}

View file

@ -18,7 +18,6 @@
"include": [ "**/*.ts" ],
"references": [
{ "path": "../../../../common/web/keyman-version" },
{ "path": "../../../../common/web/utils" }
{ "path": "../../engine/main" }
]
}

View file

@ -16,4 +16,9 @@
},
"include": [ "src/**/*.ts" ],
"references": [
{ "path": "../../../../common/web/keyboard-processor" },
{ "path": "../../../../common/web/utils" }
]
}

View file

@ -18,8 +18,6 @@
"include": [ "src/**/*.ts" ],
"references": [
// { "path": "../../../../common/web/keyman-version" },
// { "path": "../../../../common/web/utils" },
{ "path": "../../../../common/web/keyboard-processor" }
]
}

View file

@ -16,4 +16,8 @@
},
"include": [ "src/**/*.ts" ],
"references": [
{ "path": "../../../../common/web/utils" }
]
}

View file

@ -18,8 +18,10 @@
"include": [ "src/**/*.ts" ],
"references": [
// { "path": "../../../../common/web/keyman-version" },
// { "path": "../../../../common/web/utils" },
{ "path": "../../../../common/web/keyboard-processor" }
{ "path": "../../../../common/web/input-processor" },
{ "path": "../device-detect" },
{ "path": "../osk" },
{ "path": "../package-cache" },
{ "path": "../paths" },
]
}

View file

@ -18,7 +18,8 @@
"include": [ "src/**/*.ts" ],
"references": [
{ "path": "../../../../common/web/keyboard-processor" },
{ "path": "../dom-utils" }
{ "path": "../../../../common/web/input-processor" },
{ "path": "../dom-utils" },
{ "path": "../events" }
]
}

View file

@ -18,7 +18,7 @@
"include": [ "src/**/*.ts" ],
"references": [
{ "path": "../../../../common/web/keyboard-processor" },
{ "path": "../dom-utils" }
{ "path": "../../../../common/web/input-processor" },
{ "path": "../paths" }
]
}

View file

@ -18,7 +18,8 @@
"include": [ "**/*.ts" ],
"references": [
{ "path": "../../../../common/web/keyman-version" },
{ "path": "../../../../common/web/utils" }
// We want OSK to be free from the need to reference this child project for its paths definitions.
// There are a number of extra components here the OSK doesn't need.
{ "path": "../osk" }
]
}

View file

@ -23,8 +23,8 @@
},
"files": [],
"references": [
{ "path": "app/embed" },
{ "path": "app/web" },
{ "path": "app/browser" },
{ "path": "app/webview" },
{ "path": "app/ui" }
],
}