21 lines
586 B
JSON
21 lines
586 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "es5",
|
|
"lib": ["es2015", "DOM", "ES2019.Object"],
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"keycloakify/*": ["../src/*"]
|
|
},
|
|
// https://github.com/vitejs/vite/issues/15112#issuecomment-1823908010
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["../src", "."]
|
|
}
|