mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
* Update eslint rules * Update typescript to 4.4 * Disable react/display-name * Add @typescript-eslint/typescript-estree
34 lines
717 B
JSON
34 lines
717 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext",
|
|
"esnext.intl",
|
|
"es2017.intl",
|
|
"es2018.intl"
|
|
],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|