-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 928 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 928 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
28
29
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"moduleResolution": "node",
"incremental": true,
"baseUrl": ".",
"paths": {
"@x402/core/http": ["./node_modules/@x402/core/dist/cjs/http"],
"@x402/core/schemas": ["./node_modules/@x402/core/dist/cjs/schemas"],
"@x402/core/server": ["./node_modules/@x402/core/dist/cjs/server"],
"@x402/core/types": ["./node_modules/@x402/core/dist/cjs/types"],
"@x402/evm/exact/server": ["./node_modules/@x402/evm/dist/cjs/exact/server"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "tests"]
}