tsconfig.json 931 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "src",
  4. "resolveJsonModule": true,
  5. "downlevelIteration": false,
  6. "target": "es5",
  7. "module": "commonjs",
  8. "lib": [
  9. "es5",
  10. "es2015.promise",
  11. "es2016",
  12. "dom"
  13. ],
  14. "outDir": "./dist",
  15. "paths": {
  16. "@/*": [
  17. "*"
  18. ],
  19. "*": [
  20. "*"
  21. ]
  22. },
  23. "typeRoots": [
  24. "./node_modules/@types"
  25. ],
  26. "allowSyntheticDefaultImports": true,
  27. "esModuleInterop": true,
  28. "declaration": true,
  29. "stripInternal": true,
  30. "experimentalDecorators": true,
  31. "noImplicitReturns": true,
  32. "alwaysStrict": true,
  33. "noFallthroughCasesInSwitch": true,
  34. "removeComments": false,
  35. "strictNullChecks": true,
  36. "strictFunctionTypes": true,
  37. "skipLibCheck": true,
  38. "pretty": true,
  39. "strictPropertyInitialization": true
  40. },
  41. "include": [
  42. "src/**/*.ts"
  43. ],
  44. "exclude": [
  45. "node_modules"
  46. ]
  47. }