api-client/packages/hoppscotch-app/tsconfig.json

34 lines
713 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
},
2021-12-16 10:24:32 +00:00
"types": [
"@types/node",
"@nuxt/types",
"@nuxtjs/i18n",
"@nuxtjs/toast",
"@nuxtjs/sentry",
2021-12-20 10:28:04 +00:00
"@nuxtjs/color-mode",
"@nuxtjs/axios"
2021-12-16 10:24:32 +00:00
]
},
2021-09-03 17:36:23 +00:00
"exclude": ["node_modules", ".nuxt", "dist"],
"vueCompilerOptions": {
"experimentalCompatMode": 2
2021-11-05 03:43:04 +00:00
}
}