mirror of
https://github.com/jellyfin/jellyfin-chromecast.git
synced 2024-11-23 05:59:50 +00:00
2bd8f24dfb
Previous "node" option should no longer be used: https://www.typescriptlang.org/docs/handbook/modules/reference.html#node10-formerly-known-as-node "bundler" is recommended when using a bundler.
21 lines
535 B
JSON
21 lines
535 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["dom", "ES2015"],
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist/",
|
|
"strict": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
},
|
|
"types": ["@types/chromecast-caf-receiver", "vite/client"]
|
|
}
|
|
}
|