-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: ensure unified tsconfig and remove mocks, test, stories from build (
#436) * ci: ensure unified tsconfig and remove mocks,test,stories from build * ci: move certificates into certificate folder inside script Signed-off-by: Nastya Rusina <[email protected]>
- Loading branch information
Showing
17 changed files
with
85 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,4 @@ yarn-error.log | |
|
||
# Certs | ||
.srl | ||
script/rootCA.* | ||
script/server.crt | ||
script/server.csr | ||
script/server.key | ||
certificate/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import { env } from 'common/env'; | ||
import { Protobuf } from 'flyteidl'; | ||
import * as Long from 'long'; | ||
|
||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
2 changes: 1 addition & 1 deletion
2
packages/zapp/console/src/components/common/FilterableNamedEntityList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
packages/zapp/console/src/components/common/SearchableNamedEntityList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,16 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"allowSyntheticDefaultImports": true, | ||
"allowJs": true, | ||
"baseUrl": "src", | ||
"checkJs": false, | ||
"downlevelIteration": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"importHelpers": true, | ||
"jsx": "react", | ||
"lib": ["es6", "es2021", "dom", "dom.iterable"], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitReturns": true, | ||
"noImplicitAny": false, | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"baseUrl": "./src", | ||
"outDir": "./dist", | ||
"removeComments": false, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"sourceMap": true, | ||
"strict": true, | ||
"target": "es6", | ||
"types": ["node", "webpack-env", "jest", "@testing-library/jest-dom"], | ||
|
||
"composite": true, | ||
"paths": { | ||
"@flyteconsole/*": ["../../plugins/*/src"] | ||
} | ||
// TODO: this items should be removed when violations are fixed: | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"noImplicitAny": false, | ||
"exactOptionalPropertyTypes": false, | ||
"noImplicitOverride": false | ||
}, | ||
"references": [{ "path": "../../plugins/components" }], | ||
// "extends": "../../../tsconfig.base.json", | ||
// "compilerOptions": { | ||
// "rootDir": "./src", | ||
// "outDir": "./dist" | ||
// }, | ||
// "references": [{ "path": "../../plugins/components" }], | ||
"include": ["src/**/*"], | ||
"exclude": [ | ||
"**/__mocks__", | ||
"**/test", | ||
"**/mocks", | ||
// baseline | ||
"**/node_modules", | ||
"**/dist", | ||
"**/lib", | ||
"**/src/**/*.spec.*", | ||
"**/src/**/*.test.*", | ||
"**/src/**/*.stories.*" | ||
] | ||
"include": ["src/**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters