mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-22 23:28:35 +00:00
27 lines
531 B
JSON
27 lines
531 B
JSON
{
|
|
"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",
|
|
"nuxt-i18n",
|
|
"@nuxtjs/toast",
|
|
"vue-rx"
|
|
]
|
|
},
|
|
"exclude": ["node_modules", ".nuxt", "dist"]
|
|
}
|