我在Angular4中有以下src项目结构:
src/
my-component.ts
my-component.html
构建库时,我运行tsc -p .
并使用已编译的js创建dist。该库运行良好,但html不会复制到dist文件夹中。我做错了什么?
(当我运行npm发布时也是如此。库被编译,推送但没有html文件。)
我在这里添加了package.json
的脚本 "scripts": {
"build": "tsc -p .",
"lint": "tslint --type-check --project tsconfig.json src/**/*.ts",
"test": "tsc && karma start",
"prepublish": "tsc",
"tsc": "tsc"
}
编辑:
我知道tsc无法移动资源。它只是编译Typescript。那么,是否有必要使用Gulp或类似的东西?