mirror of
https://github.com/lensapp/lens.git
synced 2024-11-24 11:15:16 +03:00
91354eae01
- Remove need for using relative paths during build Signed-off-by: Sebastian Malton <sebastian@malton.name>
28 lines
400 B
JSON
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"
|
|
]
|
|
}
|