mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
31 lines
689 B
JSON
31 lines
689 B
JSON
{
|
|
"extends": "../../tsconfig-base.json",
|
|
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "none",
|
|
"outFile": "./build/index.js",
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"lib": ["es6", "dom"]
|
|
},
|
|
"include" : ["./*.ts"],
|
|
"references": [
|
|
{ "path": "../models/types" },
|
|
{ "path": "../models/wordbreakers" },
|
|
{ "path": "../models/templates" },
|
|
{ "path": "../web/lm-message-types" }
|
|
],
|
|
"exclude" : [
|
|
"node-defaultWorker.ts",
|
|
"virtualizedWorker.ts",
|
|
"index.d.ts",
|
|
"worker-interface.d.ts",
|
|
"node_modules",
|
|
"testing"
|
|
],
|
|
"files": [
|
|
"../web/lm-worker/build/index.wrapped-for-bundle.ts"
|
|
]
|
|
}
|