jellyfin-chromecast/tsconfig.json
Matthew Haughton 133d489738 Remove explicit isolatedModules config
This is set to true when verbatimModuleSyntax is enabled.
2024-11-12 20:08:36 +11:00

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