В корень проекта положить tsconfig.json
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"baseUrl": ".",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"target": "ESNext",
"lib": [
"dom",
"es2017"
]
},
"exclude": [
"static",
"build",
"dist",
"node_modules"
]
}
Подробнее тут
https://www.typescriptlang.org/docs/handbook/compi...
+
Установите в зависимости проекта типы для библиотек, которые идут без типов .d.ts в комплекте
https://www.npmjs.com/~types
P.S. Подсказки в vscode лучшие.