July 2019
Intermediate to advanced
416 pages
10h 6m
English
By now, creating a node application should be second nature, so we aren't going to cover how to do that anymore. The tsconfig file that we are going to use is as follows:
{ "compileOnSave": true, "compilerOptions": { "incremental": true, "target": "es5", "module": "commonjs", "outDir": "./dist", "removeComments": true, "strict": true, "esModuleInterop": true, "inlineSourceMap": true, "experimentalDecorators": true, }}
Read now
Unlock full access