openvidu/openvidu-browser/ts/OpenViduInternal/tsconfig.json

29 lines
798 B
JSON
Raw Normal View History

{
"compilerOptions": {
"allowJs": true,
2018-03-01 11:13:45 +01:00
"target": "es5",
"module": "commonjs",
//"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,
"outDir": "../../lib/OpenViduInternal",
"emitBOM": false,
"preserveConstEnums": true,
2018-03-01 11:13:45 +01:00
"sourceMap": true,
"lib": ["dom","es5","es2015.promise","scripthost"]
},
//"buildOnSave": true,
2018-03-01 11:13:45 +01:00
"compileOnSave": true
}