-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 835 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 835 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": "ES2021",
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"isolatedModules": true,
"declaration": true,
"noEmit": true,
"types": ["node", "vitest/globals"],
"baseUrl": ".",
"paths": {
"codex-auth": ["./src/index.ts"],
"codex-auth/run": ["./src/run.ts"],
"codex-auth/backend": ["./src/backend/index.ts"],
"codex-auth/backend/direct": ["./src/backend/direct/index.ts"],
"codex-auth/backend/next": ["./src/backend/next/index.ts"],
"codex-auth/backend/worker": ["./src/backend/worker/index.ts"]
}
},
"include": ["src", "tests", "demo"]
}