Following the documentation here: https://microsoft.github.io/msfs-avionics-mirror/docs/getting-started/setting-up-your-environment a user in a fresh environment will get the following errors:
> msfssdk@0.1.0 build > tsc utils/DebounceTimer.ts:5:18 - error TS2503: Cannot find namespace 'NodeJS'. 5 private timer: NodeJS.Timeout | null = null; ~~~~~ Found 1 error.
This is because it is missing the types library and section from the `tsconfig.json`
The user must first:
npm install @types/node
and then edit the tsconfig.json file adding the following to the `compilerOptions`:
"types": [ "node" ]
Once this is done, the SDK will compile