Add "dom" to your lib section in compilerOptions in tsconfig.json.
Example:
{ "compilerOptions": { "rootDir": "src", "outDir": "bin", "module": "commonjs", "noImplicitAny": false, "removeComments": true, "preserveConstEnums": true, "sourceMap": true, "target": "es5", "lib": [ "es6", "dom" <------- Add this "dom" here ], "types": [ "reflect-metadata" ], "moduleResolution": "node", "experimentalDecorators": true, "emitDecoratorMetadata": true } }
source share