vault/ui/tsconfig.json
Angel Garbarino 3850d41a87
Upgrade Ember data 4.11.x to 4.12.x (#25272)
* add target to tsconfig

* initial setup

* fix shamir test

* fix auth test with title case header

* fix mfa-login-test

* fix auth-form-test with title case header

* fix service auth-form test with title case header

* fix test with mfa

* Update package.json

* fix failing cubbyhole tests

* changelog

* fix pki configuration test failure

* update yarn lock

* userpass-rest-password test

* missed

* wip sync issues

* sync stablized
2024-02-20 12:37:50 -07:00

95 lines
3.5 KiB
JSON

{
"extends": "@tsconfig/ember/tsconfig.json",
"compilerOptions": {
"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/*"],
"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/open-api-explorer/**/*",
"lib/pki/**/*",
"lib/replication/**/*",
"lib/service-worker-authenticated-download/**/*",
"lib/sync/**/*",
"mirage/**/*"
],
"exclude": ["node_modules"]
}