Files
DefinitelyTyped/types/picturefill/tsconfig.json
Alexander Azarov 76105d9466 Type definitions for picturefill
It's a module function, so should be imported like

```
import picturefill = require('picturefill');
```
2017-09-06 10:29:35 +03:00

24 lines
474 B
JSON

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