-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
29 lines (29 loc) · 1021 Bytes
/
tsconfig.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
{
"compilerOptions": {
"module": "commonjs",
"target": "es2022",
"lib": ["ES2023", "DOM"],
"outDir": "out",
"sourceMap": true,
"strict": false,
"stripInternal": true,
"strictNullChecks": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedLocals": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"paths": {
"@vlocode/apex": ["./packages/apex/src"],
"@vlocode/core": ["./packages/core/src"],
"@vlocode/util": ["./packages/util/src"],
"@vlocode/salesforce": ["./packages/salesforce/src"],
"@vlocode/vlocity": ["./packages/vlocity/src"],
"@vlocode/vlocity-deploy": ["./packages/vlocity-deploy/src"],
"@vlocode/omniscript": ["./packages/omniscript/src"]
}
}
}