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 309B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "strictPropertyInitialization": false,
  4. "noImplicitAny": false,
  5. "target": "ESnext",
  6. "module": "commonjs",
  7. "declaration": true,
  8. "strict": true,
  9. "experimentalDecorators": true
  10. },
  11. "include": ["src/**/*.ts", "test/**/*.ts"],
  12. "exclude": ["node_modules"],
  13. }