mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-19 06:07:40 +00:00
30 lines
No EOL
743 B
JSON
30 lines
No EOL
743 B
JSON
{
|
|
"extends": "../../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
|
|
// TODO: These override /tsconfig.base.json settings, and so should be removed if possible,
|
|
// but existing code in web/ breaks some of these settinsg
|
|
"noImplicitThis": false,
|
|
"noImplicitReturns": false,
|
|
"noImplicitAny": false,
|
|
"strictFunctionTypes": false,
|
|
"noUnusedLocals": false,
|
|
|
|
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./",
|
|
"inlineSources": true,
|
|
"lib": ["es6", "dom"],
|
|
"module": "es6",
|
|
"outDir": "../build/obj",
|
|
"rootDir": "./",
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"tsBuildInfoFile": "../build/obj/tsconfig.tsbuildinfo",
|
|
},
|
|
|
|
"include": [
|
|
"*.ts"
|
|
]
|
|
} |