If you compile a .ts file to a definitions file (.d.ts), and open that file in Brackets, you will see errors on the require calls. Example: `import someFile = require('./someFile');` (and in the same directory there is also a file named `someFile.d.ts`)
If you compile a .ts file to a definitions file (.d.ts), and open that file in Brackets, you will see errors on the require calls.
Example:
import someFile = require('./someFile');(and in the same directory there is also a file named
someFile.d.ts)