导入ng2-bootstrap会更改我的tsc输出目录结构

时间:2016-02-26 09:49:18

标签: typescript angular tsc ng2-bootstrap

我有以下文件夹结构

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"
  ]
}

1 个答案:

答案 0 :(得分:2)

我找到了解决方案。显然,源.ts文件与.d.ts位于同一目录中。因此它编译这些文件。 (我在前面的某处读到了这个,我不确定推理/为什么会发生这种情况)但是,解决办法是删除.ts中的所有*.d.ts igoring 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",
}

下载软件包后,只需要完成一次。

另一种命令行方法是:

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

修改

我找到了原始问题:https://github.com/valor-software/ng2-bootstrap/issues/128