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.

27 rader
631 B

8 år sedan
8 år sedan
8 år sedan
  1. {
  2. "compilerOptions": {
  3. "lib": [
  4. "es6",
  5. "es2015"
  6. ],
  7. "module": "commonjs",
  8. "noFallthroughCasesInSwitch": true,
  9. "noImplicitAny": true,
  10. "noImplicitReturns": true,
  11. "noImplicitThis": false,
  12. "noUnusedLocals": true,
  13. "outDir": "out",
  14. "removeComments": true,
  15. "rootDir": ".",
  16. "sourceMap": true,
  17. "strictNullChecks": false,
  18. "target": "es6",
  19. "typeRoots": [
  20. "./node_modules/@types",
  21. "./@types"
  22. ]
  23. },
  24. "exclude": [
  25. "node_modules",
  26. ".vscode-test"
  27. ]
  28. }