Skip to content

Commit 06f7163

Browse files
committed
refactor: update tsconfig
1 parent e9a76e2 commit 06f7163

File tree

1 file changed

+9
-31
lines changed

1 file changed

+9
-31
lines changed

client/tsconfig.json

Lines changed: 9 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": false,
@@ -19,33 +15,15 @@
1915
"jsx": "preserve",
2016
"baseUrl": "./src",
2117
"paths": {
22-
"@/*": [
23-
"./*"
24-
],
25-
"@service/*": [
26-
"service/*"
27-
],
28-
"@models/*": [
29-
"models/*"
30-
],
31-
"@hooks/*": [
32-
"hooks/*"
33-
],
34-
"@context/*": [
35-
"context/*"
36-
],
37-
"@components/*": [
38-
"components/*"
39-
]
18+
"@/*": ["./*"],
19+
"@service/*": ["service/*"],
20+
"@models/*": ["models/*"],
21+
"@hooks/*": ["hooks/*"],
22+
"@context/*": ["context/*"],
23+
"@components/*": ["components/*"]
4024
},
4125
"incremental": true
4226
},
43-
"exclude": [
44-
"node_modules"
45-
],
46-
"include": [
47-
"next-env.d.ts",
48-
"**/*.ts",
49-
"**/*.tsx"
50-
]
27+
"exclude": ["node_modules"],
28+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
5129
}

0 commit comments

Comments
 (0)