mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2026-09-02 21:04:08 +03:00
22 lines
510 B
JSON
22 lines
510 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": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"types": ["@types/node", "@nuxt/types", "@nuxtjs/vuetify"]
|
|
},
|
|
"exclude": ["node_modules", ".nuxt", "dist"]
|
|
}
|