keycloak_theme/src/lib/tsconfig.json

19 lines
422 B
JSON
Raw Normal View History

{
"extends": "../../tsproject.json",
"compilerOptions": {
"outDir": "../../dist/lib",
"rootDir": ".",
"module": "ES2020",
2022-09-01 22:35:01 +02:00
"target": "ES2017",
"lib": ["es2015", "DOM", "ES2019.Object"],
"moduleResolution": "node",
"jsx": "react",
"allowSyntheticDefaultImports": true
},
"references": [
{
"path": "../bin"
}
]
}