jellyfin-web/tsconfig.json

22 lines
434 B
JSON
Raw Normal View History

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