1
0
mirror of https://github.com/lensapp/lens.git synced 2024-11-24 11:15:16 +03:00
lens/open-lens/tsconfig.json
Sebastian Malton 91354eae01 chore: Fix build of open-lens
- Remove need for using relative paths during build

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-05-09 09:55:25 -04:00

28 lines
400 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*",
]
},
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
]
},
"include": [
"src/**/*",
"../packages/core/types/*.d.ts"
],
"exclude": [
"out",
"dist",
"coverage",
"binaries",
"static"
]
}