-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
27 lines (27 loc) · 1002 Bytes
/
tsconfig.base.json
File metadata and controls
27 lines (27 loc) · 1002 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"@alphabook/benchmark-core": ["packages/benchmark-core/src/index.ts"],
"@alphabook/corpus-core": ["packages/corpus-core/src/index.ts"],
"@alphabook/corpus-text": ["packages/corpus-text/src/index.ts"],
"@alphabook/platform": ["packages/platform/src/index.ts"],
"@alphabook/shared": ["packages/shared/src/index.ts"],
"@alphabook/db": ["packages/db/src/index.ts"],
"@alphabook/source-fixture": ["packages/source-fixture/src/index.ts"],
"@alphabook/source-gutenberg": ["packages/source-gutenberg/src/index.ts"],
"@alphabook/source-gutenberg/*": ["packages/source-gutenberg/src/*"]
}
}
}