keycloak_theme/src/tsconfig.json

24 lines
549 B
JSON
Raw Normal View History

{
2023-03-16 22:43:09 +01:00
"extends": "../tsproject.json",
"compilerOptions": {
2023-03-16 22:43:09 +01:00
"outDir": "../dist",
"rootDir": ".",
"module": "ES2020",
2022-09-01 22:35:01 +02:00
"target": "ES2017",
"lib": ["es2015", "DOM", "ES2019.Object"],
"moduleResolution": "node",
2023-03-17 20:40:29 +01:00
"baseUrl": ".",
"paths": {
"keycloakify/*": ["./*"]
},
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true
},
2024-01-27 18:49:29 +01:00
"exclude": ["./bin", "./vite-plugin"],
"references": [
{
2023-03-16 22:43:09 +01:00
"path": "./bin"
}
]
}