mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-12 11:55:32 +00:00
Removes the need for package.json references for @keymanapp/web-utils, and relies on bundler to include keyman/common/web-utils when building.
15 lines
333 B
JSON
15 lines
333 B
JSON
{
|
|
"extends": "../tsconfig.dom.json",
|
|
|
|
"compilerOptions": {
|
|
"outDir": "../../build/engine/obj/",
|
|
"tsBuildInfoFile": "../../build/engine/obj/tsconfig.tsbuildinfo",
|
|
"rootDir": "./src",
|
|
},
|
|
|
|
"include": [ "src/**/*.ts", "src/core-processor/import/*.js" ],
|
|
|
|
"references": [
|
|
{ "path": "../common/web-utils" }
|
|
]
|
|
}
|