Skip to content

Commit

Permalink
Refactor: tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kmc7468 committed Nov 26, 2024
1 parent 327ba68 commit 2f60fd9
Showing 1 changed file with 20 additions and 21 deletions.
41 changes: 20 additions & 21 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
{
"compilerOptions": {
"target": "es6",
"module": "node16",
"moduleResolution": "node16",
"allowJs": true,
"outDir": "./dist",
"resolveJsonModule": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
},
"include": ["src"],
"exclude": ["dist", "node_modules"],
"ts-node": {
"files": true
"compilerOptions": {
"target": "es6",
"module": "node16",
"moduleResolution": "node16",
"allowJs": true,
"outDir": "./dist",
"resolveJsonModule": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
},
"include": ["src"],
"exclude": ["dist", "node_modules"],
"ts-node": {
"files": true
}
}

0 comments on commit 2f60fd9

Please sign in to comment.