mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
29 lines
587 B
JSON
29 lines
587 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"pretty": true,
|
|
"rootDir": "src",
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "lib",
|
|
"lib": ["es2018", "dom"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"**/__tests__/**/*",
|
|
"**/__stories__/**/*",
|
|
"*.test.ts",
|
|
"*.test.tsx"
|
|
]
|
|
}
|