{ "compilerOptions": { /* Language and Environment */ "target": "es2016", /* Modules */ "module": "commonjs", "rootDir": "./", "baseUrl": "./src", "paths": { "clients/*": [ "clients/*" ], "config/*": [ "config/*" ], "controllers/*": [ "controllers/*" ], "interfaces/*": [ "interfaces/*" ], "lib/*": [ "lib/*" ], "middlewares/*": [ "middlewares/*" ], "services/*": [ "services/*" ], }, "typeRoots": [ "./src/@types", "./node_modules/@types" ], /* Emit */ "outDir": "./dist", "removeComments": true, /* Interop Constraints */ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, /* Type Checking */ "strict": true, "skipLibCheck": true } }