mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 01:48:16 -07:00
25 lines
534 B
JSON
25 lines
534 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"target": "ES5",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2015"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist/",
|
|
"checkJs": false,
|
|
"strictNullChecks": true,
|
|
"jsx": "react-jsx",
|
|
"downlevelIteration": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|