-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
102 lines (96 loc) · 2.87 KB
/
Copy pathtsconfig.json
File metadata and controls
102 lines (96 loc) · 2.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2023",
"lib": ["ES2023"],
"experimentalDecorators": false,
"emitDecoratorMetadata": false,
/* Modules */
"module": "NodeNext",
"rootDir": "./src",
"moduleResolution": "NodeNext",
"baseUrl": "./src",
"paths": {
"#cli": ["./cli.ts"],
"#context": ["./context.ts"],
"#core": ["./core/index.ts"],
"#core/*": ["./core/*"],
"#errors": ["./errors/index.ts"],
"#errors/*": ["./errors/*"],
"#lib": ["./lib/index.ts"],
"#lib/*": ["./lib/*"],
"#lib/async": ["./lib/async/index.ts"],
"#lib/async/*": ["./lib/async/*"],
"#lib/fs": ["./lib/fs/index.ts"],
"#lib/fs/*": ["./lib/fs/*"],
"#lib/git": ["./lib/git/index.ts"],
"#lib/git/*": ["./lib/git/*"],
"#orchestrator": ["./orchestrator/index.ts"],
"#orchestrator/*": ["./orchestrator/*"],
"#orchestrator/execution": ["./orchestrator/execution/index.ts"],
"#orchestrator/stash": ["./orchestrator/stash/index.ts"],
"#orchestrator/submodules": ["./orchestrator/submodules/index.ts"],
"#orchestrator/workflow": ["./orchestrator/workflow/index.ts"],
"#types": ["./types/index.ts"],
"#types/*": ["./types/*"],
"#ui": ["./ui/index.ts"],
"#ui/*": ["./ui/*"]
},
"resolveJsonModule": true,
"allowArbitraryExtensions": true,
/* JavaScript Support */
"allowJs": false,
"checkJs": false,
/* Emit */
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"removeComments": true,
"noEmit": false,
"importHelpers": false,
"downlevelIteration": false,
"preserveConstEnums": true,
"declarationDir": "./dist",
/* Interop Constraints */
"isolatedModules": true,
"verbatimModuleSyntax": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
/* Completeness */
"skipDefaultLibCheck": false,
"skipLibCheck": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}