2020-11-20 21:08:00 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
2022-06-25 16:44:17 +01: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 22:21:59 +01:00
|
|
|
"module": "esnext",
|
2020-11-20 21:08:00 +00:00
|
|
|
"moduleResolution": "node",
|
2021-08-10 22:21:59 +01:00
|
|
|
"lib": [
|
|
|
|
"ES5",
|
|
|
|
"ES2015",
|
|
|
|
"ES2016",
|
|
|
|
"ES2017",
|
|
|
|
"ES2018",
|
|
|
|
"ES2019",
|
|
|
|
"ES2020",
|
|
|
|
"ESNext",
|
|
|
|
"DOM",
|
2022-07-05 22:09:41 +01:00
|
|
|
"DOM.Iterable",
|
2021-08-10 22:21:59 +01:00
|
|
|
"WebWorker"
|
|
|
|
],
|
2020-12-02 14:44:40 +00:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "ts-lit-plugin",
|
|
|
|
"strict": true
|
|
|
|
}
|
|
|
|
]
|
2021-08-15 19:59:37 +01:00
|
|
|
}
|
2020-11-20 21:08:00 +00:00
|
|
|
}
|