25 lines
709 B
JSON
25 lines
709 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", "."],
|
|
"exclude": [
|
|
"../src/bin/initialize-account-theme/src",
|
|
"../src/bin/initialize-admin-theme/src"
|
|
]
|
|
}
|