mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "react",
|
|
"target": "ES2019",
|
|
"module": "CommonJS",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"traceResolution": false,
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": true,
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"types/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-css-modules"
|
|
}
|
|
],
|
|
"noEmitOnError": true,
|
|
"declaration": true,
|
|
"declarationDir": "./src/extensions/npm/extensions/dist",
|
|
"outDir": "./src/extensions/npm/extensions/dist"
|
|
},
|
|
"include": [
|
|
"types/*.d.ts",
|
|
],
|
|
"files": [
|
|
"./src/extensions/extension-api.ts",
|
|
],
|
|
}
|