jellyfin-web/tsconfig.json
2021-06-18 17:01:00 +02:00

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