spiegel-keyman/developer/js/tsconfig.json
2022-05-04 10:13:44 +10:00

28 lines
694 B
JSON

{
"extends": "../../tsconfig-base.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
},
"include": [
"source/**/*.ts"
],
"references": [
{ "path": "../../common/web/keyman-version" },
{ "path": "../../common/models/types" },
{ "path": "../../common/models/templates" },
{ "path": "../../common/models/wordbreakers" },
]
}