123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "target": "ES2018",
- "module": "ESNext",
- "moduleResolution": "Node",
- "lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
- "resolveJsonModule": true,
- "esModuleInterop": true,
- "allowJs": true,
- "sourceMap": true,
- "strict": true,
- "noEmit": true,
- "baseUrl": ".",
- "paths": {
- "~/*": ["./*"],
- "@/*": ["./*"]
- },
- "types": ["@types/node", "@nuxt/types", "@nuxtjs/i18n", "@nuxtjs/toast"]
- },
- "exclude": ["node_modules", ".nuxt", "dist"],
- "vueCompilerOptions": {
- "experimentalCompatMode": 2
- }
- }
|