Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

20 строки
503 B

8 лет назад
8 лет назад
8 лет назад
8 лет назад
  1. {
  2. "compilerOptions": {
  3. "lib": [ "es6" ],
  4. "module": "commonjs",
  5. "noFallthroughCasesInSwitch": true,
  6. "noImplicitAny": true,
  7. "noImplicitReturns": true,
  8. "noImplicitThis": false,
  9. "noUnusedLocals": true,
  10. "outDir": "out",
  11. "removeComments": true,
  12. "rootDir": ".",
  13. "sourceMap": true,
  14. "strictNullChecks": false,
  15. "target": "es6"
  16. },
  17. "exclude": [
  18. "node_modules",
  19. ".vscode-test"
  20. ]
  21. }