-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
34 lines (34 loc) · 979 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"target": "ES2020",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@/common/*": ["src/common/*"],
"@/page/*": ["src/page/*"],
"@/shared/*": ["src/shared/*"],
"@/story/*": ["src/story/*"],
"@/mocks/*": ["src/mock/*"]
},
"jsxImportSource": "@emotion/react"
},
/*svg*/
"exclude": ["node_modules", "dist"],
"include": ["src", "./svg.d.ts", "./src/shared/api/index.d.ts"],
"references": [{ "path": "./tsconfig.node.json" }]
}