-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.base.json
41 lines (41 loc) · 1.29 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"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,
"baseUrl": ".",
"paths": {
"@rnef/cli": ["packages/cli/src/index.ts"],
"@rnef/config": ["packages/config/src/index.ts"],
"@rnef/create-app": ["packages/create-app/src/index.ts"],
"@rnef/plugin-metro": ["packages/plugin-metro/src/index.ts"],
"@rnef/plugin-repack": ["packages/plugin-repack/src/index.ts"],
"@rnef/platform-android": [
"packages/platform-android/src/index.ts"
],
"@rnef/platform-ios": [
"packages/platform-ios/src/index.ts"
],
"@rnef/test-helpers": ["packages/test-helpers/src/index.ts"],
"@rnef/tools": ["packages/tools/src/index.ts"],
"@rnef/platform-apple-helpers": [
"packages/platform-apple-helpers/src/index.ts"
],
"@rnef/plugin-brownfield-android": [
"packages/plugin-brownfield-android/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}