forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.22 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.22 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
38
39
40
41
{
"compilerOptions": {
"target": "es2022",
"module": "Node16",
"strict": true,
"exactOptionalPropertyTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"importsNotUsedAsValues": "error",
"esModuleInterop": true,
"declarationMap": true,
"sourceMap": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Node16",
"allowJs": true,
"preserveSymlinks": true,
"types": [],
"resolveJsonModule": true,
"incremental": true,
"ignoreDeprecations": "5.0",
"skipLibCheck": true,
"baseUrl": "./packages/",
"paths": {
"btree": ["btree/b+tree.ts"],
"datadog": ["datadog/src/mod.ts"],
"datadog/src/*": ["datadog/src/*"],
"replicache": ["replicache/src/mod.ts"],
"replicache/src/*": ["replicache/src/*"],
"shared/src/*": ["shared/src/*"],
"zero-client": ["zero-client/src/mod.ts"],
"zero-client/src/*": ["zero-client/src/*"],
"zero-protocol": ["zero-protocol/src/mod.ts"],
"zero-protocol/src/*": ["zero-protocol/src/*"],
"zql": ["zql/src/mod.ts"],
"zql/src/*": ["zql/src/*"]
}
}
}