DefinitelyTyped/types/plotly.js/tsconfig.json
Grant Nestor 1fd0dba186 Add declarations for "plotly.js/lib/core" (#18392)
* Add declarations for "plotly.js/lib/core"

* Add "lib/core.d.ts" to tsconfig

* Use global import

* Add test for lib/core.d.ts
2017-08-01 10:29:32 -07:00

26 lines
528 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"lib/core.d.ts",
"test/index-tests.ts",
"test/core-tests.ts"
]
}