spiegel-keyman/common/web/keyboard-processor/src/tsconfig.bundled.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}
]
}