From 0617c124d5f3cfb45a9440377b4c676bd251407b Mon Sep 17 00:00:00 2001 From: NghiaCaNgao Date: Thu, 22 Jun 2023 23:08:43 +0700 Subject: [PATCH] re-arrange attrs in tsconfig file --- tsconfig.json | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 816e3df..451be5e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,22 +1,21 @@ { "compilerOptions": { - "module": "ESNext", - "target": "esnext", "noImplicitAny": true, - "removeComments": true, - "preserveConstEnums": true, - "sourceMap": true, - "declaration": true, + "target": "esnext", + "module": "ESNext", "moduleResolution": "node", - "esModuleInterop": true, "resolveJsonModule": true, - "outDir": "./lib", "baseUrl": ".", "paths": { "@src/*": [ "src/modules/*" ] - } + }, + "declaration": true, + "removeComments": true, + "sourceMap": true, + "preserveConstEnums": true, + "esModuleInterop": true, }, "ts-node": { "esm": true,