keycloak_theme/tsconfig.json

21 lines
535 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",
"sourceMap": true,
"newLine": "LF",
"noUnusedLocals": true,
"noUnusedParameters": true,
"incremental": true,
"strict": true,
"downlevelIteration": true,
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
},
2021-02-20 12:15:33 +01:00
"include": ["src"]
2021-02-20 11:51:44 +01:00
}