https://www.366service.com/jp/qa/009ec6278cc141427de1e7fd0335c69a
以下のようなエラーが出る。
```
`[ts] File '<root_path>/node_modules/@types/node/index.d.ts' is not a module.`
```
[[typeRoots]]に`node_modules/@types`を指定すればOK。
```json
{
"compilerOptions": {
...
"typeRoots": ["node_modules/@types"]
}
}
```