-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.54 KB
/
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
{
"ts-node": {
// these options are overrides used only by ts-node
// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
"compilerOptions": {
"module": "commonjs"
}
},
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "esnext",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"resolveJsonModule": true,
"lib": ["es2017", "dom", "esnext.asynciterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strictPropertyInitialization": false,
"baseUrl": ".",
"paths": {
"@rezonapp/browser-safe-schemas": [
"libs/schemas/src/entities/enums/index.ts"
],
"@rezonapp/common": ["libs/common/src"],
"@rezonapp/feature-flags": ["libs/common/feature-flags/index.ts"],
"@rezonapp/gql": ["libs/gql/index.ts"],
"@rezonapp/gql/api": ["libs/gql/generated/api.ts"],
"@rezonapp/icons": ["libs/icons"],
"@rezonapp/permissions": ["libs/common/permissions/index.ts"],
"@rezonapp/schemas": ["libs/schemas/src/index.ts"],
"@rezonapp/sdk*": ["libs/sdks/generated*"],
"@rezonapp/ui-components": ["libs/ui-components/src/index.ts"],
"@rezonapp/utils": ["libs/utils"],
"@rezonapp/openapi": ["libs/openapi/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}