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