-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.base.json
33 lines (33 loc) · 952 Bytes
/
tsconfig.base.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
30
31
32
33
{
"compileOnSave": false,
"compilerOptions": {
"module": "commonjs",
"baseUrl": "./",
"rootDir": ".",
"composite": true,
"target": "ES2020",
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"declaration": true,
"emitDeclarationOnly": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": false,
"experimentalDecorators": true,
"resolveJsonModule": true,
"stripInternal": true,
"keyofStringsOnly": false,
"strictPropertyInitialization": true,
"paths": {
"@uploadx/core": ["packages/core/src"],
"@uploadx/gcs": ["packages/gcs/src"],
"@uploadx/s3": ["packages/s3/src"],
"node-uploadx": ["packages/node-uploadx/src"],
"@test/shared": ["test/shared"]
}
},
"exclude": ["node_modules", "lib"]
}