0
私はng e2e
を実行しています。ng e2eを実行するとdist/out-tsc-e2eはどこにありますか?
dist/out-tsc-e2e
にコンパイルされたjavascriptが表示されます。しかし、私はこのディレクトリ(out-tsc-e2e
)を見ていません。
// tsconfig.json
{
"compileOnSave": false,
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../dist/out-tsc-e2e",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}
私はng e2e
を実行したときに何が起こっているかについて困惑しているので、私が尋ねる理由があります。
e2e/
のtypescriptファイルがコンパイルされるのは、それですか?