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