mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 17:05:34 +00:00
16 lines
449 B
JSON
16 lines
449 B
JSON
{
|
|
"extends": "../tsconfig.kmw-main-base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"importHelpers": false, // This project exists to help define the helpers for the other KMW components.
|
|
"tsBuildInfoFile": "./build/tsconfig.tsbuildinfo",
|
|
"lib": ["es6", "DOM"], // The latter is b/c esbuild expects the type.
|
|
|
|
"baseUrl": "./src",
|
|
"outDir": "./build/",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": [
|
|
"./src/*.ts"
|
|
]
|
|
}
|