-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
27 lines (27 loc) · 884 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
27 lines (27 loc) · 884 Bytes
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
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"strict": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"paths": {
"@deploy-skill/core": ["packages/core/src/index.ts"],
"@deploy-skill/deployers": ["packages/deployers/src/index.ts"],
"@deploy-skill/detectors": ["packages/detectors/src/index.ts"],
"@deploy-skill/github": ["packages/github/src/index.ts"],
"@deploy-skill/logger": ["packages/logger/src/index.ts"],
"@deploy-skill/templates": ["packages/templates/src/index.ts"]
}
}
}