-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
62 lines (62 loc) · 1.75 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
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
{
"exclude": [
"**/node_modules",
"**/spec.ts",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/bin",
"**/coverage",
"./cypress",
"**/dist",
"**/Trackers/*.js",
"**/Svg/*.js",
"**/*.config.js",
"**/apimock",
"**/reports",
"**/*.md",
"**/resolveTsconfigPathsToAlias.js",
"**/ecosystem.config.cjs",
"**/webpack.config.cjs",
"**/app.e2e-spec.ts"
],
"include": ["apps", "package"],
"compilerOptions": {
"rootDir": ".",
"baseUrl": "./types/index",
"lib": ["dom", "dom.iterable", "ES2021"],
"experimentalDecorators": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "ES2020",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"target": "ES2021",
"sourceMap": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"strictPropertyInitialization": false,
"declarationDir": "./types",
"paths": {
"@make.org/widget": ["./apps/widget/*"],
"@make.org/front": ["./apps/front/*"],
"@make.org/types": ["./package/types/*"],
"@make.org/api": ["./package/api/*"],
"@make.org/assets": ["./package/assets/*"],
"@make.org/ui": ["./package/ui/*"],
"@make.org/utils": ["./package/utils/*"],
"@make.org/components": ["./package/components/*"],
"@make.org/store": ["./package/store/*"],
"@make.org/logger": ["./package/logger/*"],
"@make.org/designsystem": ["./package/designsystem/*"],
"@make.org/tracking": ["./package/tracking/*"]
}
}
}