54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"paths": {
|
|
"@redeye/client/*": ["./src/*"],
|
|
"@redeye/graph": ["../../packages/graph/src/index.ts"],
|
|
"@redeye/graph/*": ["../../packages/graph/src/*"],
|
|
"@redeye/ui-styles": ["../../packages/ui-styles/src/index.ts"],
|
|
"@redeye/ui-styles/*": ["../../packages/ui-styles/src/*"]
|
|
},
|
|
"baseUrl": ".",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"downlevelIteration": true,
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": false,
|
|
"noEmit": false,
|
|
"composite": true,
|
|
"jsxImportSource": "@emotion/react",
|
|
"jsx": "react-jsx",
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-styled-plugin",
|
|
"validate": false,
|
|
"lint": {
|
|
"validProperties": ["r", "dominant-baseline"]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"include": ["src"],
|
|
"references": [
|
|
{
|
|
"path": "../../packages/graph"
|
|
},
|
|
{
|
|
"path": "../../packages/ui-styles"
|
|
}
|
|
]
|
|
}
|