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