eclipse-typescript
eclipse-typescript copied to clipboard
Can provide options to ignore such errors:Cannot find module 'xxxx'
Can provide options to ignore such errors:Cannot find module 'xxxx'
I need to load js(AMD mode) from server,for example: import * as Input from 'load?view=input.js'; import * as Button from 'load?view=button.js'
thats the compiler.
I would use a xxx.d.ts, and load the module Asynchronously with your loader. (Eg: require('', ('load?view=input.js') => {})).