-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(web): move
lm-worker
→ worker-thread
Move `common/web/lm-worker/` → `web/src/engine/predictive-text/worker-thread/`. Fixes: #12148
- Loading branch information
1 parent
392a0fb
commit 08e0d30
Showing
55 changed files
with
46 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
32 changes: 32 additions & 0 deletions
32
web/src/engine/predictive-text/worker-thread/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"extends": "../../../../tsconfig.base.json", | ||
|
||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"outDir": "build/obj", | ||
"tsBuildInfoFile": "build/obj/tsconfig.tsbuildinfo", | ||
"rootDir": "./src/main", | ||
// To help better support legacy Android devices | ||
"downlevelIteration": true, | ||
// Facilitates & simplifies stitching together the worker sourcemaps during the polyfill-concatenation step. | ||
"inlineSourceMap": true, | ||
// May not be set at the same time as the prior setting. | ||
"sourceMap": false, | ||
|
||
// As this one is the one that directly interfaces with the worker (from the inside) | ||
"lib": ["webworker", "es6"], | ||
}, | ||
"references": [ | ||
// types | ||
{ "path": "../../../../../common/models/types" }, | ||
{ "path": "../types" }, | ||
// modules | ||
{ "path": "../../../../../common/web/keyman-version" }, | ||
{ "path": "../../../../../common/web/utils" }, | ||
{ "path": "../../../../../common/models/templates" }, | ||
{ "path": "../../../../../common/models/wordbreakers" }, | ||
], | ||
"include": [ | ||
"src/main/**/*.ts" | ||
] | ||
} |