mirror of
https://github.com/wazuh/wazuh-dashboard-plugins.git
synced 2026-02-03 17:38:15 -06:00
* 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>
29 lines
566 B
JSON
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"
|
|
]
|
|
}
|