DefinitelyTyped/types/iv-viewer/tsconfig.json
Robert Wettstädt 82b2c751f7
[iv-viewer] Add iv viewer (#43728)
* [iv-viewer] Add iv-viewer

* [iv-viewer] Add missing class fields types

* [iv-viewer] Add default options
2020-04-08 13:56:59 -07:00

26 lines
542 B
JSON

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