0
我試圖編譯和複製所有ts文件從dev
文件夾到app
文件夾。
所以我想是所有已編譯的文件複製到應用程序文件夾的根,像app/app.component.js
,但目前的結果是app/dev/app.component.js
Typescript tsconfig filsGlob不復制到應用程序文件夾的根目錄
我怎樣才能做到這一點?
這是我目前的tsconfig
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "./app"
},
"filesGlob": [
"./dev/**/*.ts",
"!./node_modules/**/*.ts"
],
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}