mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 18:35:32 +00:00
24 lines
520 B
JSON
24 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"noUnusedLocals": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/@keymanapp"
|
|
]
|
|
},
|
|
"include": [
|
|
"source/**/*.ts"
|
|
]
|
|
}
|