forked from BinaryStudioAcademy/bsa-2022-vse-bude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 806 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
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsxImportSource": "@emotion/react",
"target": "es2015",
"lib": ["dom", "dom.iterable", "esnext"],
"baseUrl": "./",
"paths": {
"@types": ["common/types"],
"@enums": ["common/enums"],
"@constants": ["common/constants"],
"@hooks": ["hooks"],
"@hocs": ["hocs"],
"@helpers": ["helpers"],
"@components/*": ["components/*"],
"@services": ["services"],
"@primitives": ["components/primitives"],
"@providers": ["providers"],
"@store": ["store"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"emotion.d.ts",
"../shared/src/common/constants/post.ts",
"components/imageCrop/component.tsx"
],
"exclude": ["node_modules"]
}