Files
jellyfin-web/tsconfig.json
T

25 lines
534 B
JSON
Raw Normal View History

2021-06-11 14:49:57 +02:00
{
"compilerOptions": {
2023-05-02 09:52:08 -04:00
"baseUrl": "src",
2021-06-11 14:49:57 +02:00
"target": "ES5",
"lib": ["DOM", "DOM.Iterable", "ES2015"],
2021-06-11 14:49:57 +02:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
2022-02-18 14:27:39 +03:00
"noImplicitAny": true,
2021-06-11 14:49:57 +02:00
"allowSyntheticDefaultImports": true,
"strict": true,
"module": "ESNext",
"moduleResolution": "node",
2023-04-16 23:20:23 -04:00
"resolveJsonModule": true,
2021-06-11 14:49:57 +02:00
"outDir": "./dist/",
"checkJs": false,
"strictNullChecks": true,
"jsx": "react-jsx",
"downlevelIteration": true
2021-06-11 14:49:57 +02:00
},
"include": [
"src"
]
}