mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-02 19:16:40 +00:00
33 lines
710 B
JSON
33 lines
710 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"types": [
|
|
"@types/node",
|
|
"@nuxt/types",
|
|
"@types/nuxtjs__auth",
|
|
"@nuxtjs/axios",
|
|
"@nuxtjs/vuetify",
|
|
"@nuxtjs/date-fns",
|
|
"nuxt-i18n",
|
|
"@types/wicg-mediasession",
|
|
"jest"
|
|
]
|
|
},
|
|
"exclude": ["node_modules", ".nuxt", "dist"]
|
|
}
|