mirror of
https://github.com/jellyfin/jellyfin-chromecast.git
synced 2024-11-23 05:59:50 +00:00
133d489738
This is set to true when verbatimModuleSyntax is enabled.
21 lines
540 B
JSON
21 lines
540 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["dom", "ES2015"],
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist/",
|
|
"verbatimModuleSyntax": true,
|
|
"strict": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
},
|
|
"types": ["@types/chromecast-caf-receiver", "vite/client"]
|
|
}
|
|
}
|