mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-25 03:11:40 +01:00
* enables typescript in kubernetes engine * adds api service to kubernetes engine * removes mounts handler from kubernetes mirage handler * adds kubernetes application route to handle withConfig decorator check * updates usage of application model in kubernetes engine * updates kubernetes configuration route to use api service fetched config * adds kubernetes config form class * updates error route backend references to secretsEngine * updates kubernetes configure workflow to use api service and form class * fixes tests * reverts kubernetes mirage handler change * updates type for inferredState in kubernetes config page component * removes commented out form field in kubernetes config form Co-authored-by: Jordan Reimer <zofskeez@gmail.com>
100 lines
3.7 KiB
JSON
100 lines
3.7 KiB
JSON
{
|
|
"extends": "@tsconfig/ember/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noEmitOnError": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2021",
|
|
// The combination of `baseUrl` with `paths` allows Ember's classic package
|
|
// layout, which is not resolvable with the Node resolution algorithm, to
|
|
// work with TypeScript.
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"vault/tests/*": ["tests/*"],
|
|
"vault/mirage/*": ["mirage/*"],
|
|
"vault/*": [
|
|
"types/*",
|
|
"types/vault/*",
|
|
"app/*",
|
|
"lib/core/app/*",
|
|
"lib/css/app/*",
|
|
"lib/kmip/app/*",
|
|
"lib/open-api-explorer/app/*",
|
|
"lib/pki/app/*",
|
|
"lib/replication/app/*",
|
|
"lib/service-worker-authenticated-download/app/*"
|
|
],
|
|
"core": ["lib/core/addon"],
|
|
"core/*": ["lib/core/addon/*"],
|
|
"core/test-support": ["lib/core/addon-test-support"],
|
|
"core/test-support/*": ["lib/core/addon-test-support/*"],
|
|
"css": ["lib/css/addon"],
|
|
"css/*": ["lib/css/addon/*"],
|
|
"css/test-support": ["lib/css/addon-test-support"],
|
|
"css/test-support/*": ["lib/css/addon-test-support/*"],
|
|
"kmip": ["lib/kmip/addon"],
|
|
"kmip/*": ["lib/kmip/addon/*"],
|
|
"kmip/test-support": ["lib/kmip/addon-test-support"],
|
|
"kmip/test-support/*": ["lib/kmip/addon-test-support/*"],
|
|
"ldap": ["lib/ldap/addon"],
|
|
"ldap/*": ["lib/ldap/addon/*"],
|
|
"kubernetes": ["lib/kubernetes/addon"],
|
|
"kubernetes/*": ["lib/kubernetes/addon/*"],
|
|
"kv": ["lib/kv/addon"],
|
|
"kv/*": ["lib/kv/addon/*"],
|
|
"kv/test-support": ["lib/kv/addon-test-support"],
|
|
"kv/test-support/*": ["lib/kv/addon-test-support/*"],
|
|
"open-api-explorer": ["lib/open-api-explorer/addon"],
|
|
"open-api-explorer/*": ["lib/open-api-explorer/addon/*"],
|
|
"open-api-explorer/test-support": ["lib/open-api-explorer/addon-test-support"],
|
|
"open-api-explorer/test-support/*": ["lib/open-api-explorer/addon-test-support/*"],
|
|
"pki": ["lib/pki/addon"],
|
|
"pki/*": ["lib/pki/addon/*"],
|
|
"pki/test-support": ["lib/pki/addon-test-support"],
|
|
"pki/test-support/*": ["lib/pki/addon-test-support/*"],
|
|
"replication": ["lib/replication/addon"],
|
|
"replication/*": ["lib/replication/addon/*"],
|
|
"replication/test-support": ["lib/replication/addon-test-support"],
|
|
"replication/test-support/*": ["lib/replication/addon-test-support/*"],
|
|
"service-worker-authenticated-download": ["lib/service-worker-authenticated-download/addon"],
|
|
"service-worker-authenticated-download/*": ["lib/service-worker-authenticated-download/addon/*"],
|
|
"service-worker-authenticated-download/test-support": [
|
|
"lib/service-worker-authenticated-download/addon-test-support"
|
|
],
|
|
"service-worker-authenticated-download/test-support/*": [
|
|
"lib/service-worker-authenticated-download/addon-test-support/*"
|
|
],
|
|
"sync": ["lib/sync/addon"],
|
|
"sync/*": ["lib/sync/addon/*"],
|
|
"*": ["types/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"app/**/*",
|
|
"tests/**/*",
|
|
"types/**/*",
|
|
"lib/core/**/*",
|
|
"lib/css/**/*",
|
|
"lib/kmip/**/*",
|
|
"lib/ldap/**/*",
|
|
"lib/kubernetes/**/*",
|
|
"lib/open-api-explorer/**/*",
|
|
"lib/pki/**/*",
|
|
"lib/replication/**/*",
|
|
"lib/service-worker-authenticated-download/**/*",
|
|
"lib/sync/**/*",
|
|
"mirage/**/*"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|