Files
ui/tsconfig.json
2023-02-14 18:36:34 +00:00

45 lines
870 B
JSON

{
"include": [
"src",
"jest.config.ts"
],
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext",
"webworker"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"sourceMap": true,
"noEmit": true,
"downlevelIteration": true,
"jsx": "react",
"useUnknownInCatchVariables": false,
"paths": {
"@components/*": [
"src/components/*"
],
"@ducks/*": [
"src/ducks/*"
],
"~/*": [
"src/util/*"
],
"#/*": [
"static/*"
]
}
}
}