You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem I am encountering is that if I open Module.ts I have an error saying it cannot resolve States.Boot. If I then open the Boot.ts file, the other file will resolve the symbol correctly. Unfortunately, this means every time I open this project in sublime I basically have to open all files so that internal module usage works properly.
This happens on the dev branch. I don't want to use explicit requires (var Boot = require(...)). Is there any way whatever process needs to run to load each module's data can happen on project load instead of lazily when the file is opened?
The text was updated successfully, but these errors were encountered:
I have a file that looks like this:
src/ts/Module.ts:
and another
src/ts/states/Boot.ts:
The problem I am encountering is that if I open
Module.ts
I have an error saying it cannot resolveStates.Boot
. If I then open theBoot.ts
file, the other file will resolve the symbol correctly. Unfortunately, this means every time I open this project in sublime I basically have to open all files so that internal module usage works properly.This happens on the
dev
branch. I don't want to use explicit requires (var Boot = require(...)
). Is there any way whatever process needs to run to load each module's data can happen on project load instead of lazily when the file is opened?The text was updated successfully, but these errors were encountered: