Image CDN for atproto built on cloudflare
1{
2 "compilerOptions": {
3 /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
5 /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
6 "target": "es2021",
7 /* Specify a set of bundled library declaration files that describe the target runtime environment. */
8 "lib": ["es2021"],
9 /* Specify what JSX code is generated. */
10 "jsx": "react-jsx",
11
12 /* Specify what module code is generated. */
13 "module": "es2022",
14 /* Specify how TypeScript looks up a file from a given module specifier. */
15 "moduleResolution": "Bundler",
16 /* Enable importing .json files */
17 "resolveJsonModule": true,
18
19 /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
20 "allowJs": true,
21 /* Enable error reporting in type-checked JavaScript files. */
22 "checkJs": false,
23
24 /* Disable emitting files from a compilation. */
25 "noEmit": true,
26
27 /* Ensure that each file can be safely transpiled without relying on other imports. */
28 "isolatedModules": true,
29 /* Allow 'import x from y' when a module doesn't have a default export. */
30 "allowSyntheticDefaultImports": true,
31 /* Ensure that casing is correct in imports. */
32 "forceConsistentCasingInFileNames": true,
33
34 /* Enable all strict type-checking options. */
35 "strict": true,
36
37 /* Skip type checking all .d.ts files. */
38 "skipLibCheck": true,
39 "types": [
40 "./worker-configuration.d.ts"
41 ]
42 },
43 "exclude": ["test"],
44 "include": ["worker-configuration.d.ts", "src/**/*.ts"]
45}