mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-21 01:21:54 +08:00
10f70b781f
Signed-off-by: MiniDigger <admin@minidigger.me>
41 lines
687 B
JSON
41 lines
687 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": [
|
|
"ESNext",
|
|
"ESNext.AsyncIterable",
|
|
"DOM"
|
|
],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"importHelpers": true,
|
|
"paths": {
|
|
"~/*": [
|
|
"./*"
|
|
],
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"types": [
|
|
"@nuxt/types",
|
|
"@types/node",
|
|
"@nuxtjs/axios",
|
|
"cookie-universal-nuxt",
|
|
"@nuxtjs/vuetify"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".nuxt",
|
|
"dist"
|
|
]
|
|
}
|