I would like to use npm module in Typescript project but there is no typings or tsd for this module. When I try use import Module from 'module'
I had an error : Cannot find module 'module'.
Is there way to fix it?
[EDIT]
My tsconfig.json
:
{
"compilerOptions": {
"target": "ES5",
"moduleResolution": "node",
"module": "commonjs",
"noEmitOnError": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"sourceMap": true,
"sourceRoot": "src",
"outDir": "bld"
},
"exclude": [
"bld"
]
}