adding dom to the tsconfig to accomdate the HTMLElement value allowed for the selector property

This commit is contained in:
VML\snau
2017-12-12 08:10:28 -08:00
parent 074fe0665f
commit 7ecf2a8044
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
// Type definitions for siema 1.4
// Project: https://github.com/pawelgrzybek/siema
// Definitions by: Irmantas Zenkus <https://github.com/Irmiz>
// Sam Nau <https://github.com/samnau>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare class Siema {
currentSlide: number;

View File

@@ -2,7 +2,8 @@
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
@@ -20,4 +21,4 @@
"index.d.ts",
"siema-tests.ts"
]
}
}