1.0.0 • Published 9 years ago
typescript_module_example v1.0.0
typescript_module_example
An example / test case of importing typescript modules located in a node_modules folder.
Explanation
This project shows a simple example of importing 3 types of TypeScript (external) modules.
- First is a normal module declared in a file called
file_module.ts - Next is a module located in
node_modulescalledindex_modulewhich has index.ts as its main entry point. Finally there is
package_modulewhich uses apackage.jsonfile to declare its TypeScript entry point using thetypingsproperty.
Note that for published modules you should use a d.ts file for the typings property as you don't want your module consumers to recompile your module, just consume its typings.
Expected Result
The project should compile without errors. Running the example would display
$ node app.js
hello from file_module
hello from index_module
hello from package_moduleCurrent output with TypeScript 1.8.0-dev.20151104
$ tsc --version
message TS6029: Version 1.8.0-dev.20151104
$ tsc app.ts --module commonjs --moduleResolution node
$1.0.0
9 years ago