mirror of
https://github.com/pmndrs/zustand.git
synced 2025-12-08 19:45:52 +00:00
* add example project for zustand devonly devtools with better rewind feature of redux devtools * fix yarn install for demo * remove lodash from demo * adjust utils * remove assets from demo project * add codesandbox * devtools for groups of stores * remove command from .yml * add tests * cleanup * Existing test cleanup * Slight test cleanup; extract iife * Slight cleanup * Non-recursive S * Remove initialState Co-authored-by: Corin (CWStra) <cwstra@gmail.com>
20 lines
454 B
JSON
20 lines
454 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"zustand": ["./src/index.ts"],
|
|
"zustand/*": ["./src/*.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "tests/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|