How to append file extensions .js to typescript? -


in typescript write path without extension -

import someclass './some-class';   

how make after compilation, these paths contain extension .js ? builds project using gulp-typescript.

these paths contain extension .js

you don't need to. runtime systems (e.g. node, requirejs, systemjs) automatically assume .js extension if require js file.


Comments

Popular posts from this blog

renaming files in a directory using python or R -

c# - ajax - How to receive data both html and json from server? -