Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

tsconfig.json 361B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "CommonJS",
  5. "rootDir": "src",
  6. "outDir": "dist",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "noFallthroughCasesInSwitch": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "strictPropertyInitialization": false,
  13. },
  14. "exclude": [
  15. "scripts"
  16. ]
  17. }