-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.worker.json
More file actions
49 lines (49 loc) · 1.39 KB
/
Copy pathtsconfig.worker.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noImplicitAny": false,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"isolatedModules": true,
"paths": { "@/*": ["./src/*"] },
"types": ["@cloudflare/workers-types", "node"]
},
"include": [
"src/worker.ts",
"src/worker/**/*.ts",
"src/lib/worker-env.ts",
"src/lib/auth.ts",
"src/lib/auth-api.ts",
"src/lib/db/**/*.ts",
"src/lib/storage.ts",
"src/lib/api-keys.ts",
"src/lib/articles-db.ts",
"src/lib/boards-db.ts",
"src/lib/lists-db.ts",
"src/lib/ai-cloudflare.ts",
"src/lib/ai-server.ts",
"src/lib/ai-config.ts",
"src/lib/ai-vendor.ts",
"src/lib/safe-fetch.ts",
"src/lib/url-validation.ts",
"src/lib/browser-memory-import.ts",
"src/lib/research-brief.ts",
"src/lib/pdf-service.ts",
"src/types.ts"
],
"exclude": ["node_modules", "**/*.test.ts", "src/lib/**/__tests__/**"]
}