-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
49 lines (49 loc) · 1.39 KB
/
tsconfig.json
File metadata and controls
49 lines (49 loc) · 1.39 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"include": [
"src/client/index.tsx",
"src/server/index.ts",
"src/",
],
"exclude": [
"node_modules",
"config",
".build",
"deploy",
"tls",
"blueprint-templates",
"./blueprint-templates"
],
"compilerOptions": {
"outDir": "./build/",
"sourceMap": true,
"noImplicitAny": false,
"module": "esnext",
"target": "es2016",
"jsx": "react",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"Src/*": ["src/*"],
"Components/*": ["src/client/components/*"],
"Containers/*": ["src/client/containers/*"],
"Constants/*": ["src/constants/*"],
"Assets/*": ["src/assets/*"],
"Fonts/*": ["src/assets/fonts/*"],
"Blocks/*": ["src/client/blocks/*"],
"Forms/*": ["src/client/forms/*"],
"Pages/*": ["src/client/pages/*"],
"Actions/*": ["src/actions/*"],
"Reducers/*": ["src/reducers/*"],
"Selectors/*": ["src/selectors/*"],
"Types/*": ["src/types/*"],
"Utils/*": ["src/utils/*"]
}
},
"files": [
"src/types/typings/declarations.d.ts"
]
}