mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 03:15:33 +00:00
27 lines
675 B
JSON
27 lines
675 B
JSON
{
|
|
"extends": "../../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"module": "none",
|
|
"outFile": "./build/index.js",
|
|
"sourceMap": true,
|
|
"lib": ["webworker", "es6"],
|
|
"target": "es5",
|
|
"downlevelIteration": true,
|
|
},
|
|
"references": [
|
|
// types
|
|
{ "path": "../../models/types" },
|
|
{ "path": "../lm-message-types" },
|
|
// modules
|
|
{ "path": "../keyman-version", "prepend": true },
|
|
{ "path": "../utils", "prepend": true },
|
|
{ "path": "../../models/templates", "prepend": true },
|
|
{ "path": "../../models/wordbreakers", "prepend": true },
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|