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.

20 lines
503 B

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