選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
631 B

8年前
8年前
8年前
  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. }