2021-02-20 11:51:44 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-07-29 23:10:35 +02:00
|
|
|
"module": "CommonJS",
|
|
|
|
"target": "es5",
|
2021-03-02 22:48:36 +01:00
|
|
|
"lib": ["es2015", "DOM", "ES2019.Object"],
|
2021-02-20 11:51:44 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strict": true,
|
|
|
|
"downlevelIteration": true,
|
2023-03-18 16:20:21 +01:00
|
|
|
"jsx": "react-jsx",
|
2023-03-18 15:49:45 +01:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"paths": {
|
|
|
|
"keycloakify/*": ["../src/*"]
|
2024-02-07 20:01:26 +01:00
|
|
|
},
|
|
|
|
// https://github.com/vitejs/vite/issues/15112#issuecomment-1823908010
|
|
|
|
"skipLibCheck": true
|
2021-02-20 11:51:44 +01:00
|
|
|
},
|
2024-07-25 20:03:03 +02:00
|
|
|
"include": ["../src", "."],
|
2024-12-27 01:49:38 +01:00
|
|
|
"exclude": ["../src/bin/initialize-account-theme/multi-page-boilerplate"]
|
2021-02-20 11:51:44 +01:00
|
|
|
}
|