keycloak_theme/src/bin/tsconfig.json

15 lines
391 B
JSON
Raw Normal View History

{
"extends": "../../tsproject.json",
"compilerOptions": {
2024-06-06 06:11:34 +02:00
"module": "ES2020",
"target": "ES2017",
2022-07-31 00:41:25 +02:00
"esModuleInterop": true,
2024-06-06 06:11:34 +02:00
"lib": ["es2015", "ES2019.Object"],
"moduleResolution": "node",
"outDir": "../../dist/bin",
"rootDir": "."
},
"include": ["**/*.ts", "**/*.tsx"],
2024-07-25 19:53:29 +02:00
"exclude": ["initialize-account-theme/src"]
}