-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
62 lines (62 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
62 lines (62 loc) · 1.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@App/*": ["./*"],
"@Scenes/*": ["./kit/scenes/*"],
"@Components/*": ["./kit/components/*"],
"@Modules/*": ["./kit/modules/*"],
"@Services": ["./model/services/index"],
"@Mappers": ["./model/mappers/index"],
"@Storages": ["./model/storages/index"],
"@Entities/*": ["./entities/*"],
"@Const/*": ["./const/*"],
"@Types": ["./common/types"]
},
"outDir": "build",
"module": "commonjs",
"target": "es5",
"lib": [
"es6",
"es7",
"dom",
"dom.iterable",
"esnext"
],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"rootDirs": [
"./src"
],
"moduleResolution": "node",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": false,
"typeRoots": [
"node_modules/@types",
"src/common/types"
],
"strict": true,
"locale": "ru",
"strictPropertyInitialization": false,
"skipLibCheck": true
},
"exclude": [
"node_modules",
"build",
"dist",
"webpack.**",
"jest.**",
"./src/__mocks__/",
"./coverage/",
"./**/*.test.ts",
"./**/*.test.tsx",
"./**/*.spec.ts",
"./**/*.spec.tsx"
]
}