mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-25 17:17:43 +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.
17 lines
397 B
JSON
17 lines
397 B
JSON
{
|
|
"extends": "../../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "../../../build/common/web-utils/obj/tsconfig.tsbuildinfo",
|
|
"outDir": "../../../build/common/web-utils/obj/",
|
|
"rootDir": "./src"
|
|
},
|
|
"references": [
|
|
{ "path": "../../../../common/web/keyman-version" },
|
|
],
|
|
"include": [
|
|
"src/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/tests/**/*.js"
|
|
]
|
|
}
|