mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00

* fix(tsconfig.json): changed skipLibCheck to false. refactor(eslint): moved configuration from package.json to .eslintrc.js and added a typescript plugin for future use * feat: wip eslint and types * feat: fix identation * feat: get rid of last any types
28 lines
575 B
JSON
28 lines
575 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ESNext"
|
|
],
|
|
"types": [],
|
|
"allowJs": false,
|
|
"skipLibCheck": false,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"./src",
|
|
"./types"
|
|
]
|
|
}
|