mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Fix some bugs about bad conditions Signed-off-by: Sebastian Malton <sebastian@malton.name>
33 lines
570 B
JSON
33 lines
570 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,
|
|
"noUncheckedIndexedAccess": true,
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"package.json",
|
|
"src/**/*",
|
|
"types/*.d.ts",
|
|
"__mocks__/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
]
|
|
}
|