mirror of
https://github.com/goauthentik/authentik
synced 2026-05-11 01:22:25 +02:00
* web: Clean up locale. * web: Clean ambiguous imports. * web: Clean up entrypoint imports. * web: Format imports. * web: Normalize extensions. * web: Tidy order. * web: Remove TS aliases.
25 lines
611 B
JSON
25 lines
611 B
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"
|
|
]
|
|
}
|
|
}
|