You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
631 B

8 years ago
8 years ago
8 years ago
  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. }