-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
51 lines (51 loc) · 2 KB
/
Copy pathtsconfig.base.json
File metadata and controls
51 lines (51 loc) · 2 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
44
45
46
47
48
49
50
51
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2018",
"module": "esnext",
"lib": ["es2020", "dom"],
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"inlineSourceMap": true,
"inlineSources": true,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noImplicitOverride": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@aligent/auth-module": ["packages/modules/auth/src/index.ts"],
"@aligent/auth-resolvers": ["packages/generated/auth-resolvers/src/index.ts"],
"@aligent/bigcommerce-graphql-module": ["packages/modules/bigcommerce/src/index.ts"],
"@aligent/bigcommerce-operations": [
"packages/generated/bigcommerce-operations/src/index.ts"
],
"@aligent/bigcommerce-resolvers": [
"packages/generated/bigcommerce-resolvers/src/index.ts"
],
"@aligent/maintenance-mode-plugin": ["packages/maintenance-mode-plugin/src/index.ts"],
"@aligent/mesh": ["tools/plugin/aligent-mesh/src/index.ts"],
"@aligent/orocommerce-graphql-module": ["packages/modules/orocommerce/src/index.ts"],
"@aligent/orocommerce-resolvers": [
"packages/generated/orocommerce-resolvers/src/index.ts"
],
"@aligent/utils": ["packages/utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}