forked from InspectorHub/OpenInspection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.api.json
More file actions
32 lines (32 loc) · 965 Bytes
/
Copy pathtsconfig.api.json
File metadata and controls
32 lines (32 loc) · 965 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
30
31
32
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"sourceMap": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"types": ["@types/node", "@cloudflare/vitest-pool-workers"],
"skipLibCheck": true,
"incremental": true,
"tsBuildInfoFile": "./.tsbuildinfo.api",
"paths": {
"@core/api-types": ["./packages/api-types/index.ts"],
"~/*": ["./app/*"]
}
},
"include": ["server/**/*.ts", "server/**/*.tsx", "worker-configuration.d.ts"],
"exclude": ["node_modules", "dist"]
}