-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 1.18 KB
/
Copy pathtsconfig.base.json
File metadata and controls
37 lines (37 loc) · 1.18 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
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"moduleResolution": "node",
"ignoreDeprecations": "5.0",
"lib": ["ES2022"],
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": ["node", "jest"],
"paths": {
"@transferx/core": ["./packages/core/src/index.ts"],
"@transferx/adapter-b2": ["./packages/adapters/b2/src/index.ts"],
"@transferx/adapter-http": ["./packages/adapters/http/src/index.ts"],
"@transferx/sdk": ["./packages/sdk/src/index.ts"],
"@transferx/adapter-s3": ["./packages/adapters/s3/src/index.ts"],
"@transferx/downloader": ["./packages/downloader/src/index.ts"]
}
},
"include": [
"packages/*/src/**/*",
"packages/adapters/*/src/**/*",
"packages/*/__tests__/**/*",
"packages/adapters/*/__tests__/**/*",
"examples/**/*"
],
"exclude": ["node_modules", "packages/*/dist"]
}