-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
40 lines (40 loc) · 1.49 KB
/
tsconfig.base.json
File metadata and controls
40 lines (40 loc) · 1.49 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"allowJs": true,
"noImplicitAny": false,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "es2020",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@batiq/actions": ["packages/actions/src/index.ts"],
"@batiq/actions/module": ["packages/actions/src/module.ts"],
"@batiq/cli": ["packages/cli/src/index.ts"],
"@batiq/components": ["packages/components/src/index.ts"],
"@batiq/components/elements": ["packages/components/src/elements.ts"],
"@batiq/core": ["packages/core/src/index.ts"],
"@batiq/data": ["packages/data/src/index.ts"],
"@batiq/expo-runtime": ["packages/expo-runtime/src/index.ts"],
"@batiq/expo-runtime/actions": ["packages/expo-runtime/src/actions.ts"],
"@batiq/expression": ["packages/expression/src/index.ts"],
"@batiq/generator": ["packages/generator/src/index.ts"],
"@batiq/import-helper": ["packages/utils/import-helper/src/index.ts"],
"@batiq/ir": ["packages/ir/src/index.ts"],
"@batiq/runtime": ["packages/runtime/src/index.ts"],
"@batiq/runtime-native": ["packages/runtime-native/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}