spiegel-keyman/developer/js/tsconfig.json
2022-05-14 15:35:06 +10:00

29 lines
718 B
JSON

{
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist/",
"rootDir": "source/",
"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" },
]
}