Skip to content

Commit dce9fbc

Browse files
committed
Refactor tsconfig.json to remove unnecessary code and improve readability
1 parent 3fd4252 commit dce9fbc

File tree

1 file changed

+6
-19
lines changed

1 file changed

+6
-19
lines changed

tsconfig.json

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,13 @@
77
"moduleResolution": "node",
88
"strict": true,
99
"skipLibCheck": true,
10-
"types": [
11-
"node"
12-
],
10+
"types": ["node"],
1311
"noImplicitReturns": true,
1412
"noImplicitThis": true,
1513
"strictNullChecks": true,
16-
"noImplicitAny": true,
14+
"noImplicitAny": true
1715
},
18-
"typeRoots": [
19-
"./node_modules/@types",
20-
"./types"
21-
],
22-
"include": [
23-
"images/**/*",
24-
"src/**/*",
25-
".env",
26-
"./types/*"
27-
],
28-
"exclude": [
29-
"node_modules",
30-
"dist"
31-
]
32-
}
16+
"typeRoots": ["./node_modules/@types", "./types"],
17+
"include": ["images/**/*", "src/**/*", ".env", "./types/*"],
18+
"exclude": ["node_modules", "dist"]
19+
}

0 commit comments

Comments
 (0)