DefinitelyTyped/types/powerbi-visuals-tools/tsconfig.json
Ilfat Galiev 9617a7fb65 Add type definitions for Power BI Custom Visuals API (powerbi-visuals-tools) (#25021)
* Added Power BI Custom Visuals API types

* Added UT

* Fix header of index.d.ts

* Code review

Update header
Remove empty VisualPermissions enumeration
Enable some rules
Added disable-next-line for no-unnecessary-generics

* Remove empty interfaces
2018-05-08 04:56:14 +12:00

25 lines
521 B
JSON

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