mirror of
https://github.com/jellyfin/jellyfin-chromecast.git
synced 2024-11-23 22:19:46 +00:00
20 lines
499 B
JSON
20 lines
499 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["dom", "ESNext"],
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist/",
|
|
"strict": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
},
|
|
"types": ["@types/chromecast-caf-receiver", "vite/client"]
|
|
}
|
|
}
|