This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-20 21:08:00 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
2022-06-25 15:44:17 +00:00
|
|
|
"paths": {
|
|
|
|
"@goauthentik/web/*": ["src/*"],
|
|
|
|
"@goauthentik/docs/*": ["../website/docs/*"]
|
|
|
|
},
|
|
|
|
"baseUrl": ".",
|
2020-11-20 21:08:00 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
2020-11-23 20:41:23 +00:00
|
|
|
"target": "esnext",
|
2021-08-10 21:21:59 +00:00
|
|
|
"module": "esnext",
|
2020-11-20 21:08:00 +00:00
|
|
|
"moduleResolution": "node",
|
2021-08-10 21:21:59 +00:00
|
|
|
"lib": [
|
|
|
|
"ES5",
|
|
|
|
"ES2015",
|
|
|
|
"ES2016",
|
|
|
|
"ES2017",
|
|
|
|
"ES2018",
|
|
|
|
"ES2019",
|
|
|
|
"ES2020",
|
|
|
|
"ESNext",
|
|
|
|
"DOM",
|
2022-07-05 21:09:41 +00:00
|
|
|
"DOM.Iterable",
|
2021-08-10 21:21:59 +00:00
|
|
|
"WebWorker"
|
|
|
|
],
|
2020-12-02 14:44:40 +00:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "ts-lit-plugin",
|
|
|
|
"strict": true
|
|
|
|
}
|
|
|
|
]
|
2021-08-15 18:59:37 +00:00
|
|
|
}
|
2020-11-20 21:08:00 +00:00
|
|
|
}
|