keycloak_theme/src/test/tsconfig.json

21 lines
539 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,
"outDir": "../../dist_test",
2021-02-20 11:51:44 +01:00
"sourceMap": true,
"newLine": "LF",
"noUnusedLocals": true,
"noUnusedParameters": true,
"incremental": true,
"strict": true,
"downlevelIteration": true,
"jsx": "react",
2021-02-20 11:51:44 +01:00
"noFallthroughCasesInSwitch": true
},
"include": [".."]
2021-02-20 11:51:44 +01:00
}