1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Reenable generating of .js files for extension api package (#5431)

This commit is contained in:
Sebastian Malton 2022-06-28 06:30:19 -07:00 committed by GitHub
parent 3084b7b8d9
commit b9ae92add6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 48 deletions

View File

@ -21,7 +21,7 @@
"compile": "env NODE_ENV=production concurrently yarn:compile:*", "compile": "env NODE_ENV=production concurrently yarn:compile:*",
"compile:main": "yarn run webpack --config webpack/main.ts", "compile:main": "yarn run webpack --config webpack/main.ts",
"compile:renderer": "yarn run webpack --config webpack/renderer.ts", "compile:renderer": "yarn run webpack --config webpack/renderer.ts",
"compile:extension-types": "yarn run tsc --project tsconfig.extension-api.json", "compile:extension-types": "yarn run webpack --config webpack/extensions.ts",
"npm:fix-build-version": "yarn run ts-node build/set_build_version.ts", "npm:fix-build-version": "yarn run ts-node build/set_build_version.ts",
"npm:fix-package-version": "yarn run ts-node build/set_npm_version.ts", "npm:fix-package-version": "yarn run ts-node build/set_npm_version.ts",
"build:linux": "yarn run compile && electron-builder --linux --dir", "build:linux": "yarn run compile && electron-builder --linux --dir",

View File

@ -1,47 +0,0 @@
{
"compilerOptions": {
"baseUrl": ".",
"jsx": "react",
"target": "ES2019",
"module": "ESNext",
"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"
}
],
"emitDeclarationOnly": true,
"noEmitOnError": true,
"declaration": true,
"declarationDir": "./src/extensions/npm/extensions/dist",
},
"include": [
"types/*.d.ts",
],
"files": [
"./src/extensions/extension-api.ts",
],
}