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