wazuh-dashboard-plugins/tsconfig.json
Álex f3bbb8d41e
Setup ESLint and Prettier (7.10.2 & master) (#4703)
* add prettier and eslint for wazuh

* update .eslintrc

* downgraded version eslint-import-resolver-typescri

* add a plugin for filename control

* add default settings for vscode workspace

* Extend .gitignore for VSCode settings

* Add recommended extensions for VSCode

* move eslint-plugin-filenames-simple to devDepend

* tooling for kibana 7.10.2

* Bump ESLint version to 7.32.0

Fixes a warning of unmet dependencies

* Add React version to ESLint configuration

Fixes a warning about the React version not being set

Co-authored-by: yenienserrano <ian.serrano@wazuh.com>
Co-authored-by: Ian Yenien Serrano <63758389+yenienserrano@users.noreply.github.com>
2022-10-19 14:48:17 +02:00

29 lines
566 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"public",
"server",
"common"
]
}