-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
44 lines (44 loc) · 1.49 KB
/
tsconfig.base.json
File metadata and controls
44 lines (44 loc) · 1.49 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
{
"compilerOptions": {
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2023"],
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"useUnknownInCatchVariables": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"@arcp/core": ["packages/core/src/index.ts"],
"@arcp/core/*": [
"packages/core/src/*/index.ts",
"packages/core/src/*.ts"
],
"@arcp/client": ["packages/client/src/index.ts"],
"@arcp/runtime": ["packages/runtime/src/index.ts"],
"@arcp/sdk": ["packages/sdk/src/index.ts"],
"@arcp/node": ["packages/middleware/node/src/index.ts"],
"@arcp/express": ["packages/middleware/express/src/index.ts"],
"@arcp/fastify": ["packages/middleware/fastify/src/index.ts"],
"@arcp/hono": ["packages/middleware/hono/src/index.ts"],
"@arcp/bun": ["packages/middleware/bun/src/index.ts"],
"@arcp/middleware-otel": ["packages/middleware/otel/src/index.ts"]
}
}
}