我无法在我的TypeScript项目中从JSNLog导入JL模块。 我使用JSPM安装了我的依赖项:
jspm install npm:jsnlog
文档提供了节点的示例:
var JL = require('jsnlog').JL;
我试图在我的项目中使用它(对于浏览器),但我无法使它工作:
import JL from 'jsnlog' // TypeError: jsnlog_1.default.createConsoleAppender is not a function
import {JL} from 'jsnlog' // TypeError: Cannot read property 'createConsoleAppender' of undefined
const JL = require('jsnlog').JL // Error: require is not defined
import JL = require('jsnlog').JL // TypeError: JL.createConsoleAppender is not a function
那里的任何巫师能指出我正确的方向吗?
// tsconfig.json
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false,
"module": "system",
"moduleResolution": "node",
"target": "es5"
}
答案 0 :(得分:0)
根据JNSLog author:
jsnlog.js实际上是用TypeScript编写的:
https://github.com/mperdeck/jsnlog.js/blob/master/jsnlog.ts 我使用TypeScript编译器将jsnlog.ts编译为jsnlog.js(纯粹的> JavaScript)。
由于您的项目已经基于打字稿,我将使用jsnlog.d.ts文件导入(您可能需要自己创建)。