Skip to content

Commit

Permalink
re-arrange attrs in tsconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
NghiaCaNgao committed Jun 22, 2023
1 parent 48d778a commit 0617c12
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 0617c12

Please sign in to comment.