|
| 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": "esnext", |
| 7 | + /* Specify a set of bundled library declaration files that describe the target runtime environment. */ |
| 8 | + "lib": ["esnext"], |
| 9 | + /* Specify what JSX code is generated. */ |
| 10 | + "jsx": "react-jsx", |
| 11 | + "allowArbitraryExtensions": true, |
| 12 | + |
| 13 | + /* Specify what module code is generated. */ |
| 14 | + "module": "esnext", |
| 15 | + /* Specify how TypeScript looks up a file from a given module specifier. */ |
| 16 | + "moduleResolution": "bundler", |
| 17 | + /* Specify type package names to be included without being referenced in a source file. */ |
| 18 | + "types": ["node"], |
| 19 | + /* Enable importing .json files */ |
| 20 | + "resolveJsonModule": true, |
| 21 | + |
| 22 | + /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ |
| 23 | + "allowJs": true, |
| 24 | + /* Enable error reporting in type-checked JavaScript files. */ |
| 25 | + "checkJs": false, |
| 26 | + |
| 27 | + /* Disable emitting files from a compilation. */ |
| 28 | + "noEmit": true, |
| 29 | + |
| 30 | + /* Ensure that each file can be safely transpiled without relying on other imports. */ |
| 31 | + "isolatedModules": true, |
| 32 | + /* Allow 'import x from y' when a module doesn't have a default export. */ |
| 33 | + "allowSyntheticDefaultImports": true, |
| 34 | + /* Ensure that casing is correct in imports. */ |
| 35 | + "forceConsistentCasingInFileNames": true, |
| 36 | + |
| 37 | + /* Enable all strict type-checking options. */ |
| 38 | + "strict": true, |
| 39 | + |
| 40 | + /* Skip type checking all .d.ts files. */ |
| 41 | + "skipLibCheck": true |
| 42 | + }, |
| 43 | + "include": ["src/**/*"] |
| 44 | +} |
0 commit comments