Для обоих случаев:
document.getElementById('body');
// or
window.document.getElementById('body');
Я получаю сообщение error TS2304: Cannot find name 'window'.
Я что-то пропустил в tsconfig.json
для файла определения, который должен установить?
Я получаю сообщение при запуске tsc
и vscode
tsconfig.json:
{
"compilerOptions": {
"allowJs": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": false,
"sourceMap": true,
"suppressImplicitAnyIndexErrors": true,
"target": "ES2016",
"typeRoots": [
"node_modules/@types/",
"typings/index.d.ts"
]
},
"exclude": [
"node_modules",
"**/*-aot.ts"
]
}
Мой ответ: для использования с tsconfig.json
я нацеливаю es5
и использую lib: ["es2015", "dom"]