-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (31 loc) · 911 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
30
31
{
"include": ["packages", "types", "src"],
"compilerOptions": {
"allowJs": false,
"target": "ESNext",
"module": "ESNext",
"baseUrl": "./",
"moduleResolution": "bundler",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./lib",
"strict": true,
"esModuleInterop": true,
"importHelpers": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": false,
"types": ["vitest", "vitest/globals"],
"paths": {
"@rustable/utils": ["packages/utils/src"],
"@rustable/enum": ["packages/enum/src"],
"@rustable/iter": ["packages/iter/src"],
"@rustable/trait": ["packages/trait/src"],
"@rustable/type": ["packages/type/src"],
"@rustable/commons": ["packages/commons/src"]
}
}
}