mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-28 11:17:45 +00:00
15 lines
577 B
JSON
15 lines
577 B
JSON
{
|
|
// This variant of the tsconfig.json exists to create a 'leaf', 'bundled'
|
|
// version of the keyboard-processor build product. The same reference
|
|
// cannot be prepended twice in a composite tsc build, posing problems
|
|
// for certain down-line builds if the two tsconfigs are not differentiated.
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outFile": "../build/index.bundled.js"
|
|
},
|
|
"references": [
|
|
{ "path": "../../../models/types" },
|
|
{ "path": "../../keyman-version/", "prepend": true },
|
|
{ "path": "../../utils/", "prepend": true}
|
|
]
|
|
}
|