tsconfig.json 692 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "compilerOptions": {
  3. "target": "ES2018",
  4. "module": "ESNext",
  5. "moduleResolution": "Node",
  6. "noImplicitAny": false,
  7. "lib": [
  8. "ESNext",
  9. "ESNext.AsyncIterable",
  10. "DOM"
  11. ],
  12. "esModuleInterop": true,
  13. "allowSyntheticDefaultImports": true,
  14. "allowJs": true,
  15. "sourceMap": true,
  16. "strict": true,
  17. "noEmit": true,
  18. "experimentalDecorators": true,
  19. "baseUrl": ".",
  20. "paths": {
  21. "~/*": [
  22. "./*"
  23. ],
  24. "@/*": [
  25. "./*"
  26. ]
  27. },
  28. "types": [
  29. "@types/node",
  30. "@nuxt/types"
  31. ]
  32. },
  33. "include": [
  34. "store/**/*.ts",
  35. ],
  36. "exclude": [
  37. "node_modules",
  38. ".nuxt",
  39. "dist"
  40. ]
  41. }