-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
43 lines (43 loc) · 1.77 KB
/
tsconfig.base.json
File metadata and controls
43 lines (43 loc) · 1.77 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
41
42
43
{
"compilerOptions": {
"allowJs": true,
"declaration": true,
"declarationMap": true,
"erasableSyntaxOnly": true,
"esModuleInterop": true,
"experimentalDecorators": false,
"importHelpers": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["ESNext"],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noUncheckedSideEffectImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@contentful/optimization-api-client": ["./packages/universal/api-client/src/index.ts"],
"@contentful/optimization-api-client/*": ["./packages/universal/api-client/src/*"],
"@contentful/optimization-api-schemas": ["./packages/universal/api-schemas/src/index.ts"],
"@contentful/optimization-api-schemas/*": ["./packages/universal/api-schemas/src/*"],
"@contentful/optimization-core": ["./packages/universal/core-sdk/src/index.ts"],
"@contentful/optimization-core/*": ["./packages/universal/core-sdk/src/*"],
"@contentful/optimization-node": ["./packages/node/node-sdk/src/index.ts"],
"@contentful/optimization-node/*": ["./packages/node/node-sdk/src/*"],
"@contentful/optimization-react-native": ["./packages/react-native-sdk/src/index.ts"],
"@contentful/optimization-react-native/*": ["./packages/react-native-sdk/src/*"],
"@contentful/optimization-web": ["./packages/web/web-sdk/src/index.ts"],
"@contentful/optimization-web/*": ["./packages/web/web-sdk/src/*"]
},
"removeComments": false,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"types": ["@rstest/core/globals"],
"useDefineForClassFields": true
}
}