24 lines
622 B
JSON
24 lines
622 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "es5",
|
|
"lib": ["es2015", "DOM", "ES2019.Object"],
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"outDir": "../dist_test",
|
|
"sourceMap": true,
|
|
"newLine": "LF",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"incremental": false,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"keycloakify/*": ["../src/*"]
|
|
}
|
|
},
|
|
"include": ["../src", "."]
|
|
}
|