DefinitelyTyped/types/lightpick/tsconfig.json
Adam Kwiatek b376aac021 Add types for lightpick. (#38063)
* Add types for lightpick.

* [lightpick]

* Follow module-class.d.ts template for a UMD module.
* Update setter signatures.
2019-09-06 15:30:05 -07:00

25 lines
509 B
JSON

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