-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
46 lines (46 loc) · 1.75 KB
/
tsconfig.base.json
File metadata and controls
46 lines (46 loc) · 1.75 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
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "NodeNext",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "NodeNext",
"lib": ["es2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"rock": ["packages/cli/dist/src/index"],
"@rock-js/config": ["packages/config/dist/src/index"],
"create-rock": ["packages/create-app/dist/src/index"],
"@rock-js/plugin-metro": ["packages/plugin-metro/dist/src/index"],
"@rock-js/plugin-repack": ["packages/plugin-repack/dist/src/index"],
"@rock-js/platform-android": ["packages/platform-android/dist/src/index"],
"@rock-js/platform-ios": ["packages/platform-ios/dist/src/index"],
"@rock-js/test-helpers": ["packages/test-helpers/dist/src/index"],
"@rock-js/tools": ["packages/tools/dist/src/index"],
"@rock-js/platform-apple-helpers": [
"packages/platform-apple-helpers/dist/src/index"
],
"@rock-js/plugin-brownfield-android": [
"packages/plugin-brownfield-android/dist/src/index"
],
"@rock-js/platform-brownfield-ios": [
"packages/plugin-brownfield-ios/dist/src/index"
],
"@rock-js/provider-github": ["packages/provider-github/dist/src/index"],
"@rock-js/provider-s3": ["packages/provider-s3/dist/src/index"],
"@rock-js/welcome-screen": ["packages/welcome-screen/dist/src/index"],
"@rock-js/plugin-expo-config-plugins": [
"packages/plugin-expo-config-plugins/dist/src/index"
]
}
},
"exclude": ["node_modules", "tmp"]
}