scroll-lock-body
Version:
scroll lock the body and remember the position
35 lines (31 loc) • 936 B
JSON
{
"compilerOptions": {
// React.js JSX settings.
"jsx": "react",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment",
// Module settings.
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"moduleResolution": "node",
"resolveJsonModule": true,
// Strictness and quality settings.
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
// Type-checking settings.
"lib": ["ES2020", "dom"],
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"types": ["jest"]
},
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
}