You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
530 B

2 years ago
2 years ago
2 years ago
2 years ago
  1. {
  2. "compilerOptions": {
  3. "target": "ES2018",
  4. "module": "ESNext",
  5. "moduleResolution": "Node",
  6. "lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
  7. "esModuleInterop": true,
  8. "allowJs": true,
  9. "sourceMap": true,
  10. "strict": true,
  11. "noEmit": true,
  12. "experimentalDecorators": true,
  13. "strictPropertyInitialization": false,
  14. "baseUrl": ".",
  15. "paths": {
  16. "~/*": ["./*"],
  17. "@/*": ["./*"]
  18. },
  19. "types": ["@types/node", "@nuxt/types", "nuxt-i18n"]
  20. },
  21. "exclude": ["node_modules"]
  22. }