Skip to content

Commit b3e4954

Browse files
authored
Merge pull request #11 from 100-hours-a-week/feature/api
feat: React Query 설정 및 API용 공통 모듈 구조 설계
2 parents 4736eec + 964be88 commit b3e4954

File tree

12 files changed

+1995
-2426
lines changed

12 files changed

+1995
-2426
lines changed

jsconfig.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2020",
4+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
5+
"module": "ESNext",
6+
"skipLibCheck": true,
7+
8+
/* Bundler mode */
9+
"moduleResolution": "bundler",
10+
"allowImportingTsExtensions": false,
11+
"resolveJsonModule": true,
12+
"isolatedModules": true,
13+
"noEmit": true,
14+
"jsx": "react-jsx",
15+
16+
/* Linting */
17+
"strict": false,
18+
"noUnusedLocals": false,
19+
"noUnusedParameters": false,
20+
"noFallthroughCasesInSwitch": true,
21+
22+
/* Path Mapping */
23+
"baseUrl": ".",
24+
"paths": {
25+
"@/*": ["./src/*"]
26+
},
27+
28+
/* JSDoc */
29+
"checkJs": false,
30+
"allowJs": true,
31+
"maxNodeModuleJsDepth": 1
32+
},
33+
"include": ["src"],
34+
"exclude": ["node_modules", "dist", "build"]
35+
}

0 commit comments

Comments
 (0)