keycloak_theme/test/tsconfig.json

24 lines
622 B
JSON
Raw Normal View History

2021-02-20 11:51:44 +01:00
{
"compilerOptions": {
"module": "CommonJS",
"target": "es5",
2021-03-02 22:48:36 +01:00
"lib": ["es2015", "DOM", "ES2019.Object"],
2021-02-20 11:51:44 +01:00
"esModuleInterop": true,
"declaration": true,
2023-03-18 06:14:05 +01:00
"outDir": "../dist_test",
2021-02-20 11:51:44 +01:00
"sourceMap": true,
"newLine": "LF",
"noUnusedLocals": true,
"noUnusedParameters": true,
2023-03-31 11:49:06 +02:00
"incremental": false,
2021-02-20 11:51:44 +01:00
"strict": true,
"downlevelIteration": true,
2023-03-18 16:20:21 +01:00
"jsx": "react-jsx",
2023-03-18 15:49:45 +01:00
"noFallthroughCasesInSwitch": true,
"paths": {
"keycloakify/*": ["../src/*"]
}
2021-02-20 11:51:44 +01:00
},
2023-03-18 06:14:05 +01:00
"include": ["../src", "."]
2021-02-20 11:51:44 +01:00
}