tsconfig.json 705 B

12345678910
  1. {
  2. "compilerOptions": {
  3. "target": "es2016",
  4. "module": "commonjs", /* Specify what module code is generated. */
  5. "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
  6. "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
  7. "strict": true, /* Enable all strict type-checking options. */
  8. "skipLibCheck": true /* Skip type checking all .d.ts files. */
  9. }
  10. }