This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsnode.tsconfig.json
120 lines (120 loc) · 4.22 KB
/
tsnode.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"lib": ["es2017", "dom", "esnext.array", "esnext.asynciterable"],
"sourceMap": true,
"allowJs": false,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "packages",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": true,
"typeRoots": ["./node_modules/@types"],
"outDir": "lib/",
"baseUrl": "packages",
"resolveJsonModule": true,
"skipLibCheck": true,
"paths": {
"openland-api": ["openland-api"],
"openland-web": ["openland-web"],
"openland-text": ["openland-text"],
"openland-x": ["openland-x"],
"openland-x-routing": ["openland-x-routing"],
"openland-x-config": ["openland-x-config"],
"openland-x-utils": ["openland-x-utils"],
"openland-x-permissions": ["openland-x-permissions"],
"openland-x-graphql": ["openland-x-graphql"],
"openland-x-analytics": ["openland-x-analytics"],
"openland-y-store": ["openland-y-store"],
"openland-y-graphql-gen": ["openland-y-graphql-gen"],
"openland-engines": ["openland-engines"],
"openland-y-graphql": ["openland-y-graphql"],
"openland-y-utils": ["openland-y-utils"],
"openland-y-runtime": ["openland-y-runtime"],
"openland-y-runtime-api": ["openland-y-runtime-api"],
"openland-y-runtime-web": ["openland-y-runtime-web"],
"openland-y-runtime-native": ["openland-y-runtime-native"],
"openland-mobile": ["openland-mobile"],
"openland-y-forms": ["openland-y-forms"],
"openland-video": ["openland-video"],
"openland-xp": ["openland-xp"],
"openland-shared": ["openland-shared"],
"react-native-async-view": ["react-native-async-view"],
"react-native-async-view-babel": ["react-native-async-view-babel"],
"react-native-notification-handler": ["react-native-notification-handler"],
"react-native-s": ["react-native-s"],
"openland-icons": ["openland-icons"],
"openland-landing": ["openland-landing"],
"openland-apps": ["openland-apps"],
"openland-form": ["openland-form"],
"openland-unicorn": ["openland-unicorn"]
},
"importHelpers": true
},
"exclude": [
"node_modules/**/*",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"packages/openland-web/src/setupTests.ts",
"packages/openland-web/src/static",
"packages/openland-web/src/less",
"**/*.spec.ts"
],
"files": [
"./packages/openland-web/typings.d.ts",
"./packages/openland-mobile/typings.d.ts",
"./benchmarking/typings.d.ts"
],
"include": [
"./packages/openland-apps",
"./packages/openland-web",
"./packages/openland-api",
"./packages/openland-text",
"./packages/openland-x",
"./packages/openland-x-routing",
"./packages/openland-x-utils",
"./packages/openland-y-store",
"./packages/openland-y-forms",
"./packages/openland-x-permissions",
"./packages/openland-x-graphql",
"./packages/openland-x-analytics",
"./packages/openland-x-config",
"./packages/openland-engines",
"./packages/openland-y-graphql",
"./packages/openland-y-utils",
"./packages/openland-y-runtime",
"./packages/openland-y-runtime-web",
"./packages/openland-y-runtime-api",
"./packages/openland-mobile",
"./packages/openland-y-runtime-native",
"./packages/openland-y-runtime-mac",
"./packages/openland-mac/src",
"./packages/openland-shared",
"./packages/openland-xs",
"./packages/openland-icons",
"./packages/openland-landing",
"./packages/openland-graphql",
"./packages/openland-form",
"./packages/react-native-async-view",
"./packages/react-native-async-view-babel",
"./packages/react-native-notification-handler",
"./packages/react-native-fast-navigation",
"./packages/react-native-s",
"./packages/openland-unicorn",
"./packages/openland-unimoji",
"./packages/openland-video",
"./packages/openland-pegasus",
"./packages/openland-powerups"
]
}