Skip to content

Commit

Permalink
improve tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Dec 1, 2024
1 parent 0c655da commit 744987e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"semi": false,
"singleQuote": true,
"printWidth": 100
"printWidth": 100,
"trailingComma": "es5"
}
2 changes: 1 addition & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "es6",
"target": "es2021",
"target": "es2022",
"noImplicitAny": true,
"noUnusedLocals": true,
"strictNullChecks": true,
Expand Down
5 changes: 3 additions & 2 deletions webapp/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"compilerOptions": {
"module": "es6",
"target": "es2020",
"moduleResolution": "NodeNext",
"module": "NodeNext",
"target": "es2022",
"noUnusedLocals": true,
"noImplicitAny": true,
"strictNullChecks": true,
Expand Down

0 comments on commit 744987e

Please sign in to comment.