-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 1.02 KB
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"lib": ["es2017", "dom"],
"module": "esnext",
"moduleResolution": "node",
"outDir": "./_dist",
"paths": {
"react-native-sqlite-storage": ["dummy.ts"],
"@config": ["config/frontend/index.ts", "config/backend/index.ts"],
"@entities": ["libs/entities/_entity-map.ts"],
"@lib/app-shell": ["libs/app-shell/src/index.ts"],
"@lib/data": ["libs/data/src/index.ts"],
"@lib/ui-components": ["libs/ui-components/src/index.ts"],
"@lib/utilities": ["libs/utilities/src/index.ts"]
},
"resolveJsonModule": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es5",
"typeRoots": ["node_modules/@types"]
},
"files": ["dummy.ts"],
"include": ["dummy.ts"],
"exclude": ["node_modules", "tmp"]
}