mirror of
https://github.com/goauthentik/authentik
synced 2026-05-13 10:26:43 +02:00
* web: Fix issues surrounding availability of controllers during init. web: Fix edgecase where flow does not have brand. * web: Fix import path. * web: Clean up mixin/controller paths. * web: Prepare for consistent import styling. - Prep for Storybook fixes. * web: Update MDX types. * web: Fix issues surrounding async imports, MDX typing, relative paths. * web: Format. Clarify. * web: Group module types.
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
// @file TSConfig used during tests.
|
|
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"types": ["node", "webdriverio/async", "@wdio/cucumber-framework", "expect-webdriverio"],
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"ES5",
|
|
"ES2015",
|
|
"ES2016",
|
|
"ES2017",
|
|
"ES2018",
|
|
"ES2019",
|
|
"ES2020",
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"WebWorker"
|
|
],
|
|
"paths": {
|
|
"@goauthentik/admin/*": ["./src/admin/*"],
|
|
"@goauthentik/common/*": ["./src/common/*"],
|
|
"@goauthentik/components/*": ["./src/components/*"],
|
|
"@goauthentik/elements/*": ["./src/elements/*"],
|
|
"@goauthentik/flow/*": ["./src/flow/*"],
|
|
"@goauthentik/locales/*": ["./src/locales/*"],
|
|
"@goauthentik/polyfill/*": ["./src/polyfill/*"],
|
|
"@goauthentik/standalone/*": ["./src/standalone/*"],
|
|
"@goauthentik/user/*": ["./src/user/*"]
|
|
}
|
|
}
|
|
}
|