mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
23 lines
382 B
JSON
23 lines
382 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "none",
|
|
"lib": ["es6"],
|
|
"target": "es5",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"outFile": "index.js",
|
|
"strict": true,
|
|
"allowJs": false,
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"node_modules/@keymanapp"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test/**/*.ts"
|
|
]
|
|
}
|