mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-27 10:07:40 +00:00
Enable noImplicitReturns.
This commit is contained in:
parent
602932b157
commit
5e90e955bf
2 changed files with 6 additions and 2 deletions
|
|
@ -182,6 +182,8 @@ export default class LexicalModelCompiler {
|
|||
set_model_metadata('sourcePath', [groupPath, authorPath, bcp47Path].join('/'));
|
||||
|
||||
fs.writeFileSync(modelInfoFileName, JSON.stringify(model_info, null, 2));
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2017",
|
||||
"module": "commonjs",
|
||||
"outDir": "dist",
|
||||
"target": "es2017",
|
||||
"noImplicitReturns": true,
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": true,
|
||||
"outDir": "dist",
|
||||
"declaration": true
|
||||
},
|
||||
"include": [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue