zustand/tsconfig.json
Daishi Kato bb26cd04c0
chore: enable exactOptionalPropertyTypes (#671)
* chore: enable exactOptionalPropertyTypes

* chore update dependencies
2021-11-22 20:38:51 +09:00

19 lines
430 B
JSON

{
"compilerOptions": {
"target": "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"]
}