1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/core/tsconfig.json
Sebastian Malton fa44b795d4 chore: Improve linting within @k8slens/core
- Turning on @typescript-eslint/recommended-requiring-type-checking
- Turning off @typescript-eslint/no-unnecessary-type-assertion (due too many false positives)
- Making @typescript-eslint/no-explicit-any an error (except in tests)

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-06-01 09:17:17 -04:00

32 lines
525 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"composite": true,
"outDir": "static/build/library/",
"paths": {
"*": [
"node_modules/*",
"types/*"
]
},
"plugins": [
{
"name": "typescript-plugin-css-modules",
"options": {
"namedExports": false
}
}
]
},
"include": [
"package.json",
"src/**/*",
"types/*.d.ts",
"__mocks__/**/*",
],
"exclude": [
"node_modules",
]
}