spiegel-keyman/common/web/sentry-manager/src/tsconfig.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"
]
}