Currently, I am utilizing Angular 2 RC-6 by referencing the Angular2 Documentation. However, I have encountered an issue with Atom being too slow to compile my '.ts' files. Interestingly, when I relocate my tsconfig.json file from the root folder to a different directory, the compilation process speeds up significantly; although there is a downside - certain Dependency Injections such as 'rxjs/add/operator/toPromise' seem to be missing.
I am seeking advice on how to enhance the compiling speed in Atom or make modifications to the tsconfig.json file for better performance.
My project follows the directory structure outlined in the documentation.
Below is a snippet of my tsconfig.json configuration:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
}
}