mirror of
https://github.com/lensapp/lens.git
synced 2024-11-28 20:14:22 +03:00
82bf67cc9e
- Has better typing - Removes use of unnusual unique symbol - Fix welcome banner tests - Update associated snapshots - Start converting custom column tests to use ApplicationBuilder - Remove old and unnused RecursiveTreeView - Introduce new TreeView for use in CatalogMenu to fix tests Signed-off-by: Sebastian Malton <sebastian@malton.name>
39 lines
809 B
JSON
39 lines
809 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "react",
|
|
"target": "ES2019",
|
|
"module": "ES2022",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"moduleResolution": "Node",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"traceResolution": false,
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": true,
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
]
|
|
}
|