mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-06 17:27:24 +00:00
* initial commit * removing files * after pr * move StatusBar to common * last changes from dev * update common-ui * webSocket was added to TrafficViewerApi * useWS * actionButtons added to TrafficV * comment clean * api clean up * api clean up * statusbar position changed * Checkbox changed * AnalyzeButton exported to common * CustomModal added from Ent * oas modal exported to common * removed redundant * oasmodal usage * es6 function * api changed * removed react-scripts Co-authored-by: Leon <>
42 lines
876 B
JSON
42 lines
876 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"moduleResolution": "node",
|
|
"jsx": "react-jsx",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": false,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es5",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"exmaple"
|
|
]
|
|
}
|