mirror of
https://github.com/pmndrs/zustand.git
synced 2025-12-08 19:45:52 +00:00
27 lines
723 B
JSON
27 lines
723 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true /* FIXME remove this once vite fixes it */,
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"verbatimModuleSyntax": true,
|
|
"declaration": true,
|
|
"isolatedDeclarations": true,
|
|
"types": ["@testing-library/jest-dom"],
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"zustand": ["./src/index.ts"],
|
|
"zustand/*": ["./src/*.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "tests/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|