-
Notifications
You must be signed in to change notification settings - Fork 75
/
tsconfig.json
36 lines (36 loc) · 1.03 KB
/
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
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"lib": ["es6", "dom"],
"module": "es6",
"moduleResolution": "node",
"sourceMap": true,
"target": "ES2021",
"jsx": "react",
"noEmit": true,
"baseUrl": "./",
"paths": {
"components/*": ["app/javascript/src/components/*"],
"apis/*": ["./app/javascript/src/apis/*"],
"helpers": ["./app/javascript/src/helpers"],
"common/*": ["./app/javascript/src/common/*"],
"utils/*": ["./app/javascript/src/utils/*"],
"context/*": ["./app/javascript/src/context/*"],
"mapper/*": ["./app/javascript/src/mapper/*"],
"constants/*": ["./app/javascript/src/constants/*"],
"StyledComponents": ["./app/javascript/src/StyledComponents"],
"miruIcons": ["./app/javascript/src/miruIcons"],
}
},
"exclude": [
"**/*.spec.ts",
"node_modules",
"vendor",
"public",
"docs"
],
"compileOnSave": false
}