File size: 619 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | {
"extends": "../tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Node",
"emitDeclarationOnly": false,
"strict": true,
"noEmit": true,
"target": "ESNext",
"jsx": "react",
"baseUrl": ".",
"rootDir": "../",
"skipLibCheck": true,
"noImplicitReturns": false,
"noUnusedLocals": false,
"types": ["vitest/globals"],
"paths": {
"reselect": ["../src/index.ts"], // @remap-prod-remove-line
"@internal/*": ["../src/*"]
}
},
"include": ["**/*.ts*"]
}
|