tsconfig.json 580 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "allowJs": true,
  6. "outDir": "scripts",
  7. "removeComments": true,
  8. "strict": true,
  9. "noUnusedLocals": true,
  10. "noUnusedParameters": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "esModuleInterop": true,
  13. "moduleResolution": "node",
  14. "baseUrl": ".",
  15. "paths": {
  16. "*": [
  17. "typings/*"
  18. ]
  19. },
  20. "typeRoots": [
  21. "./typings",
  22. "./node_modules/@types"
  23. ],
  24. "sourceMap": true,
  25. "noErrorTruncation": true,
  26. },
  27. "include": [
  28. "src/**/*"
  29. ]
  30. }