mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 09:25:33 +00:00
15 lines
396 B
JSON
15 lines
396 B
JSON
{
|
|
"extends": "../tsconfig.kmw-main-base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"lib": [ "dom", "es6" ],
|
|
"outDir": "./build/obj/",
|
|
"rootDir": "./src/engine",
|
|
"tsBuildInfoFile": "./build/obj/tsconfig.tsbuildinfo"
|
|
},
|
|
"include": ["./src/engine/**/*.ts"],
|
|
"exclude": ["./src/test/**/*.ts", "./src/tools/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../utils" }
|
|
]
|
|
}
|