Geen omschrijving

tsconfig.json 552B

1234567891011121314151617181920
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "target": "ESNext",
  5. "module": "NodeNext",
  6. "lib": ["ESNext"],
  7. "removeComments": true,
  8. "strict": true,
  9. "moduleResolution": "NodeNext",
  10. "resolveJsonModule": true,
  11. "allowSyntheticDefaultImports": true,
  12. "verbatimModuleSyntax": true,
  13. "experimentalDecorators": true,
  14. "emitDecoratorMetadata": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "noImplicitOverride": true
  17. },
  18. "include": ["*.ts", "src/**/*.ts", "tests/**/*.ts"]
  19. }