Files
DefinitelyTyped/highcharts/tsconfig.json
Andy a4bd9fa3c1 Add "noImplicitThis" to all tsconfig.json (#13446)
* Add "noImplicitThis" to all tsconfig.json

* Use `"noImplicitThis": false` on packages with broken tests.
2016-12-19 14:11:46 -08:00

32 lines
872 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": false,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"highcharts-tests.ts",
"modules/boost.d.ts",
"modules/boost-tests.ts",
"modules/exporting.d.ts",
"modules/exporting-tests.ts",
"modules/no-data-to-display.d.ts",
"modules/no-data-to-display-tests.ts",
"modules/offline-exporting.d.ts",
"modules/offline-exporting-tests.ts",
"highcharts-more.d.ts",
"highcharts-more-tests.ts",
"highstock.d.ts",
"highstock-tests.ts"
]
}