我想为项目创建一个npm包。我使用angular-cli来创建我想要打包的组件。
我的tsconfig.json
{
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}
我可以使用*.d.ts
ng build
然后,使用npm link
我可以将我的包测试到其他项目中,但是找不到包含我的组件的模块..:/
你有什么想法吗? :)