jellyfin-chromecast/tsconfig.json
2023-10-03 16:21:16 +02:00

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"]
}
}