|
| 1 | +{ |
| 2 | + "extends": "./tsconfig.json", |
| 3 | + "compilerOptions": { |
| 4 | + "outDir": "../../../dist/out-tsc", |
| 5 | + |
| 6 | + "target": "es2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, |
| 7 | + "lib": [ |
| 8 | + "es2021" |
| 9 | + ] /* Specify a set of bundled library declaration files that describe the target runtime environment. */, |
| 10 | + "jsx": "react" /* Specify what JSX code is generated. */, |
| 11 | + "module": "es2022" /* Specify what module code is generated. */, |
| 12 | + "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */, |
| 13 | + "types": [ |
| 14 | + "@cloudflare/workers-types" |
| 15 | + ] /* Specify type package names to be included without being referenced in a source file. */, |
| 16 | + "resolveJsonModule": true /* Enable importing .json files */, |
| 17 | + "allowJs": true /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */, |
| 18 | + "checkJs": false /* Enable error reporting in type-checked JavaScript files. */, |
| 19 | + "noEmit": true /* Disable emitting files from a compilation. */, |
| 20 | + "isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */, |
| 21 | + "allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */, |
| 22 | + "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, |
| 23 | + |
| 24 | + "strict": true /* Enable all strict type-checking options. */, |
| 25 | + "skipLibCheck": true /* Skip type checking all .d.ts files. */ |
| 26 | + }, |
| 27 | + "exclude": ["**/*.spec.ts", "**/*.test.ts"], |
| 28 | + "include": ["**/*.ts"] |
| 29 | +} |
0 commit comments