Skip to content

Commit c10ffbe

Browse files
committed
chore: update typecheck
1 parent 473c61b commit c10ffbe

File tree

3 files changed

+4
-21
lines changed

3 files changed

+4
-21
lines changed

backend/tsconfig.json

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
{
2+
"extends": "../tsconfig.json",
23
"compilerOptions": {
34
"rootDir": ".",
45
"baseUrl": ".",
5-
"allowJs": true,
6-
"checkJs": true,
7-
"noEmit": true,
8-
"skipLibCheck": true,
96
"module": "CommonJS",
10-
"moduleResolution": "Node",
11-
"target": "ESNext",
12-
"lib": ["ESNext", "dom"],
13-
"strict": true,
14-
"noImplicitAny": false,
15-
"allowSyntheticDefaultImports": true
7+
"moduleResolution": "Node"
168
},
179
"include": ["."]
1810
}

frontend/tsconfig.json

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
{
2+
"extends": "../tsconfig.json",
23
"compilerOptions": {
34
"rootDir": ".",
45
"baseUrl": "src",
5-
"allowJs": true,
6-
"checkJs": true,
7-
"noEmit": true,
8-
"skipLibCheck": true,
96
"module": "NodeNext",
107
"moduleResolution": "NodeNext",
11-
"target": "ESNext",
12-
"lib": ["ESNext", "dom"],
13-
"strict": true,
14-
"noImplicitAny": false,
15-
"allowSyntheticDefaultImports": true,
168
"jsx": "preserve"
179
},
1810
"include": ["src"]

tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@
99
"strict": true,
1010
"noImplicitAny": false,
1111
"allowSyntheticDefaultImports": true
12-
},
13-
"include": ["backend", "frontend"]
12+
}
1413
}

0 commit comments

Comments
 (0)