-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
37 lines (37 loc) · 969 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
35
36
37
{
"compilerOptions": {
"baseUrl": "./",
"allowJs": true,
"target": "es5",
"lib": ["es6", "es2017", "dom", "dom.iterable", "esnext"],
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"module": "es2015",
"moduleResolution": "node",
"importHelpers": true,
"resolveJsonModule": true,
"jsx": "react",
"types": ["node", "jest"],
"typeRoots": ["./typings"]
},
"include": ["typings", "src/**/*"],
"exclude": [
"node_modules",
"dist",
"**/*.test.js",
"src/data/*",
"src/components/paper/*",
"src/components/notifications/*",
"src/components/__tests__/utils.js"
],
"paths": {
"@src/*": ["src/*"],
"@Components/*": ["src/components/*"],
"@Charts/*": ["src/components/charts/*"],
"@Cards/*": ["src/components/card/*"],
"@Table/*": ["src/components/table/*"],
"@Styles/*": ["src/assets/styles/*"]
}
}