2016-10-15 00:11:17 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2017-09-22 15:57:59 +02:00
|
|
|
"allowJs": true,
|
2018-03-01 11:13:45 +01:00
|
|
|
"target": "es5",
|
2016-10-16 23:16:58 +02:00
|
|
|
"module": "commonjs",
|
2016-10-15 00:11:17 +02:00
|
|
|
//"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
//"noUnusedLocals": true,
|
|
|
|
//"noUnusedParameters": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"suppressExcessPropertyErrors": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
//"allowUnusedLabels": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
//"allowUnreachableCode": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictNullChecks": true,
|
2017-05-10 10:55:31 +02:00
|
|
|
"outDir": "../../lib/OpenViduInternal",
|
2016-10-15 00:11:17 +02:00
|
|
|
"emitBOM": false,
|
|
|
|
"preserveConstEnums": true,
|
2018-03-01 11:13:45 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"lib": ["dom","es5","es2015.promise","scripthost"]
|
2016-10-15 00:11:17 +02:00
|
|
|
},
|
|
|
|
//"buildOnSave": true,
|
2018-03-01 11:13:45 +01:00
|
|
|
"compileOnSave": true
|
2016-10-15 00:11:17 +02:00
|
|
|
}
|