None of the above solutions worked for me, but I did stumble onto a tsconfig change that did. It seems the IDE is using different rules that tsc
.
This did NOT work:
"include": ["./typings", "./src", "./test"],
This did work:
"include": ["./typings/**/*", "./src/**/*", "./test/**/*"],