-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
29 lines (29 loc) · 932 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
29 lines (29 loc) · 932 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",
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"skipLibCheck": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"verbatimModuleSyntax": true,
"paths": {
"@fables/core": ["./packages/core/src/index.ts"],
"@fables/forge-dsl": ["./packages/forge-dsl/src/index.ts"],
"@fables/forge-vm": ["./packages/forge-vm/src/index.ts"],
"@fables/sync": ["./packages/sync/src/index.ts"],
"@fables/ui": ["./packages/ui/src/index.ts"],
"@fables/plugin-sdk": ["./packages/plugin-sdk/src/index.ts"]
}
}
}