mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 10:28:18 -07:00
22 lines
434 B
JSON
22 lines
434 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES5",
|
|
"lib": ["DOM", "ES2015"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist/",
|
|
"checkJs": false,
|
|
"strictNullChecks": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|