Files
tuliprox/frontend/tsconfig.json
T
euzu c2ac20e180 Updated frontend packages
Added linter for code checking
Updated tree layout and added hover coloring
Fixed Url Field could not be edited after drop down selection
Added download on key-'Enter' press
2021-10-08 11:08:53 +02:00

28 lines
566 B
JSON

{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"noFallthroughCasesInSwitch": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}