jellyfin-chromecast/tsconfig.json

17 lines
350 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["dom", "ESNext"],
"allowJs": true,
"sourceMap": true,
"outDir": "./dist/",
"strict": true,
"baseUrl": "./src",
"paths": {
"~/*": ["./*"]
}
}
}