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

24 строки
638 B

8 лет назад
  1. {
  2. "compilerOptions": {
  3. "forceConsistentCasingInFileNames": true,
  4. "importHelpers": true,
  5. "lib": [ "es2015", "es2016", "es2017" ],
  6. "module": "esnext",
  7. "moduleResolution": "node",
  8. "noFallthroughCasesInSwitch": true,
  9. "noImplicitReturns": true,
  10. "noUnusedLocals": true,
  11. "outDir": "out",
  12. "removeComments": true,
  13. "rootDir": "./src",
  14. "skipLibCheck": true,
  15. "sourceMap": true,
  16. "strict": true,
  17. "target": "es2017"
  18. },
  19. "exclude": [
  20. "node_modules",
  21. "test",
  22. ".vscode-test",
  23. "src/ui",
  24. ]
  25. }