tsconfig.json 927 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. //"allowUnreachableCode": true,
  4. //"noUnusedLocals": false,
  5. //"noUnusedParameters": false,
  6. "removeComments": false,
  7. "preserveConstEnums": true,
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "sourceMap": true,
  11. "declaration": true,
  12. "noImplicitAny": true,
  13. "noImplicitReturns": true,
  14. "noImplicitThis": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "suppressImplicitAnyIndexErrors": true,
  17. "strictNullChecks": true,
  18. "importHelpers": true,
  19. "skipLibCheck": true,
  20. "outDir": "build/commonjs",
  21. "module": "commonjs",
  22. "target": "es5",
  23. "moduleResolution": "node",
  24. "lib": ["es2015", "dom"],
  25. "typeRoots": [
  26. "typings",
  27. "node_modules/@types"
  28. ]
  29. },
  30. "formatCodeOptions": {
  31. "indentSize": 2,
  32. "tabSize": 2
  33. },
  34. "exclude": [
  35. "node_modules",
  36. "dist"
  37. ],
  38. "include": [
  39. "src"
  40. ]
  41. }