1

我有以下文件夹结构

dist
src
  module1
    m1.ts
  module2
    m2.ts
.tsconfig.json
...

我已经tsc配置为输出,dist/js所以运行后npm run tsc我有以下内容:

dist
    js
      module1
          m1.js
      module2
          m2.js
src
...

经过一番努力,我设法融入ng-bootstrap了我的项目。

如果我import来自ng2-bootstrap我的应用程序的某个地方,例如:

import { ACCORDION_DIRECTIVES } from 'ng2-bootstrap/components/accordion';

并将npm run tsc我的文件夹结构更改为:

dist
    js
      node_modules
          ng2-bootstrap
             components
                accordian
                ...
      src
          module1
             m1.js
          module2
             m2.js
src
....

为什么会这样?

我包括:<script src="/vendor/ng2-bootstrap/bundles/ng2-bootstrap.js"></script>在我的index.html

我可以用 angular2 做到这一点 <script src="/vendor/angular2/bundles/angular2.dev.js"></script>import {Component} from 'angular2/core'并且这不会创建dist/js/node_modules/angular2文件夹

更新

这是我的 tsconfig.json 的内容

{
  "compilerOptions": {
    "target": "ES5",
    "outDir": "./dist/js",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
  "exclude": [
    "node_modules",
    "dist",
    "typings/main",
    "typings/main.d.ts"
  ]
}
4

1 回答 1

2

我想出了一个解决办法。显然源.ts文件与.d.ts. 因此它编译这些文件。(我在某处读到这个,我不确定原因/为什么会发生这种情况)但是,解决方案是删除所有.tsiging*.d.ts文件node_modules/ng2-bootstrap

我创建了一个node script来做到这一点:

// ./scripts/hack-remove-files.js

var fs = require('fs-extra')
var glob = require("glob");

var options = { ignore: '**/*.d.ts'};

glob("node_modules/ng2-bootstrap/**/*.ts", options, function (er, files) {
    for(i in files){
        removeFile(files[i]);
    }
});

glob("node_modules/ng2-file-upload/**/*.ts", options, function (er, files) {
    for(i in files){
        removeFile(files[i]);
    }
});

removeFile = function(file){
    fs.remove(file, function (err) {
        if (err) return console.error(err)
    })
}

我在 npm 中将其作为postinstall脚本运行:

"scripts": {
   ...
   "postinstall": "typings install && node ./scripts/hack-remove-files.js",
}

下载软件包后,只需执行 1 次。

另一种命令行方法是:

find node_modules/ng2-bootstrap -name '*.ts' | grep -v '\.d\.ts$' | xargs rm

编辑

我发现了所有提到的原始问题:https ://github.com/valor-software/ng2-bootstrap/issues/128

于 2016-03-08T22:01:25.170 回答