Skip to content

Commit

Permalink
feat: コメントを削除しないようにする (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
book000 authored Apr 26, 2023
1 parent ce246b4 commit 7a75ffa
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"ts-node": { "files": true },
"ts-node": {
"files": true
},
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"moduleResolution": "Node",
"lib": ["ESNext", "esnext.AsyncIterable"],
"lib": [
"ESNext",
"esnext.AsyncIterable"
],
"outDir": "./dist",
"removeComments": true,
"removeComments": false,
"esModuleInterop": true,
"allowJs": true,
"checkJs": true,
Expand All @@ -25,8 +30,12 @@
"baseUrl": ".",
"newLine": "LF",
"paths": {
"@/*": ["src/*"]
"@/*": [
"src/*"
]
}
},
"include": ["src/**/*"]
}
"include": [
"src/**/*"
]
}

0 comments on commit 7a75ffa

Please sign in to comment.