-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
53 lines (53 loc) · 1.68 KB
/
tsconfig.json
File metadata and controls
53 lines (53 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@tanstack/workflow-core": ["./packages/workflow-core/src/index.ts"],
"@tanstack/workflow-core/types": [
"./packages/workflow-core/src/types.ts"
],
"@tanstack/workflow-cloudflare": [
"./packages/workflow-cloudflare/src/index.ts"
],
"@tanstack/workflow-netlify": [
"./packages/workflow-netlify/src/index.ts"
],
"@tanstack/workflow-railway": [
"./packages/workflow-railway/src/index.ts"
],
"@tanstack/workflow-runtime": [
"./packages/workflow-runtime/src/index.ts"
],
"@tanstack/workflow-runtime/types": [
"./packages/workflow-runtime/src/types.ts"
],
"@tanstack/workflow-store-drizzle-postgres": [
"./packages/workflow-store-drizzle-postgres/src/index.ts"
],
"@tanstack/workflow-vercel": ["./packages/workflow-vercel/src/index.ts"]
},
"noEmit": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2020",
"noErrorTruncation": true
},
"include": ["scripts", "*.config.*", "vitest.workspace.ts"]
}