teleport/tsconfig.json

84 lines
1.8 KiB
JSON
Raw Normal View History

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": ".",
2023-03-21 18:01:53 +00:00
"useDefineForClassFields": true,
"esModuleInterop": true,
"importHelpers": true,
2023-03-21 18:01:53 +00:00
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": [
"dom",
2023-03-21 18:01:53 +00:00
"dom.iterable",
"esnext"
],
2023-03-21 18:01:53 +00:00
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "node",
"noEmitHelpers": true,
2023-03-21 18:01:53 +00:00
"resolveJsonModule": true,
2022-07-06 17:07:45 +00:00
"skipLibCheck": true,
2023-03-21 18:01:53 +00:00
"sourceMap": false,
"target": "esnext",
"types": [
"node",
"@emotion/core",
2022-07-27 22:38:54 +00:00
"@types/wicg-file-system-access"
],
"paths": {
"grpc": [
"node_modules/@grpc/grpc-js"
], // generator still uses "grpc" package that has been deprecated in favor of "@grpc/grpc-js"
"shared/*": [
"web/packages/shared/*"
],
"design/*": [
"web/packages/design/src/*"
],
"design": [
"web/packages/design/src/"
],
"teleport/*": [
"web/packages/teleport/src/*"
],
"teleport": [
"web/packages/teleport/src/"
],
"teleterm/*": [
"web/packages/teleterm/src/*"
],
"e-teleport/*": [
"e/web/teleport/src/*"
[Connect] Add Document Access Requests (#1203) * init webapps.e ref * update web.e * added imported components * udpated to correct imported types * webapps.e update * readme update and lint fix * removed extra console logs * sub head fix for webe * reattached webape head * fixed tests * added access request change confirm dialog * null check * webappe * count to accessRequestSerivce, import/export names, small fixes * fixed imports and createrequest params * updated imports from removed containers in teleterm-e * optional params for reuse outside of ClusterLogout * webapps.e ref update * update webapps.e ref * webapps.e ref update * webapps.e ref update and navigation item update * webapps.e update * align sync button center to match access request size * added accessRequestsSerice tests * updating webapps.e * created accessRequests object on workspace type and cleanup * added requestId to documentaccessrequest type and webapps.e update * protobuf updates changing created/expires from string to timestamppb * webappse update and review feedback * updated protos with comments * changing delete/review access request responses to void * updated getaccessrequests to not include ID * protobuf updates * webappse update * update to resource tables styles * update to standard access_request_id field in RPCs * webappse upddate * updated tests and added types * updated webappse * clusterService method for getrequestableroles, retryWithRelogin for fetch, webappse update * webappse update * story fixes * added kubes support to tsh * proto files * update webappse * Provide `WorkspaceContext` for documents in each workspace * updating webappse * webappse update * accessrequestservice fix for resoruces * updated webapps.e after master merge * removed extra data from persisted state for assumed access requests * update webappse * protobuf files * lint fixes * adding getWorkspaces stub to fix tests * webappse update * webappse snapshots update * protobuf updates Co-authored-by: Grzegorz Zdunek <grzegorz.zdunek@goteleport.com>
2022-10-11 23:53:57 +00:00
],
"e-teleterm/*": [
"e/web/teleterm/src/*"
2023-02-03 14:47:06 +00:00
],
"gen-proto-js/*": [
"gen/proto/js/*"
]
}
},
2023-03-21 18:01:53 +00:00
"include": [
"e/web/**/*.ts",
"e/web/**/*.tsx",
"e/web/**/*.js",
"e/web/**/*.jsx",
"web/**/*.ts",
"web/**/*.tsx",
"web/**/*.js",
"web/**/*.jsx"
],
"references": [{ "path": "./tsconfig.node.json"}],
"exclude": [
2023-03-21 18:01:53 +00:00
"**/vite.config.ts",
"web/packages/build/**/*",
"node_modules",
"**/node_modules/*",
"dist",
"**/dist/*",
"**/build/app/**",
"**/build/release/**"
]
}