-
Notifications
You must be signed in to change notification settings - Fork 37
/
tsconfig.base.json
42 lines (42 loc) · 2.12 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
42
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"strictNullChecks": true,
"target": "es2015",
"module": "esnext",
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@js-sdk-contrib/workspace-plugin": ["tools/workspace-plugin/src/index.ts"],
"@openfeature/config-cat-core": ["libs/shared/config-cat-core/src/index.ts"],
"@openfeature/config-cat-provider": ["libs/providers/config-cat/src/index.ts"],
"@openfeature/config-cat-web-provider": ["libs/providers/config-cat-web/src/index.ts"],
"@openfeature/env-var-provider": ["libs/providers/env-var/src/index.ts"],
"@openfeature/flagd-core": ["libs/shared/flagd-core/src/index.ts"],
"@openfeature/flagd-provider": ["libs/providers/flagd/src/index.ts"],
"@openfeature/flagsmith-client-provider": ["libs/shared/flagsmith-client/src/index.ts"],
"@openfeature/flipt-provider": ["libs/providers/flipt/src/index.ts"],
"@openfeature/flipt-web-provider": ["libs/providers/flipt-web/src/index.ts"],
"@openfeature/go-feature-flag-provider": ["libs/providers/go-feature-flag/src/index.ts"],
"@openfeature/go-feature-flag-web-provider": ["libs/providers/go-feature-flag-web/src/index.ts"],
"@openfeature/growthbook-client-provider": ["libs/providers/growthbook-client/src/index.ts"],
"@openfeature/hooks-open-telemetry": ["libs/hooks/open-telemetry/src/index.ts"],
"@openfeature/launchdarkly-client-provider": ["libs/providers/launchdarkly-client/src/index.ts"],
"@openfeature/multi-provider": ["libs/providers/multi-provider/src/index.ts"],
"@openfeature/ofrep-core": ["libs/shared/ofrep-core/src/index.ts"],
"@openfeature/ofrep-provider": ["libs/providers/ofrep/src/index.ts"],
"@openfeature/ofrep-web-provider": ["libs/providers/ofrep-web/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}