mirror of
https://github.com/goauthentik/authentik
synced 2026-05-12 18:06:21 +02:00
* web: Packagify live reload plugin. * web: Use shared formatter. * web: Format. * web: Use project mode typecheck. * web: Fix type errors.
37 lines
1.2 KiB
JSON
37 lines
1.2 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/docs/*": ["../website/docs/*"],
|
|
"@goauthentik/elements/*": ["./src/elements/*"],
|
|
"@goauthentik/flow/*": ["./src/flow/*"],
|
|
"@goauthentik/locales/*": ["./src/locales/*"],
|
|
"@goauthentik/polyfill/*": ["./src/polyfill/*"],
|
|
"@goauthentik/standalone/*": ["./src/standalone/*"],
|
|
"@goauthentik/user/*": ["./src/user/*"]
|
|
}
|
|
}
|
|
}
|