@docuseal/react
Version:
DocuSeal React components to integrate documents signing process into apps. ✍️
29 lines (28 loc) • 1.84 kB
JSON
{
"compilerOptions": {
"allowJs": true, // Allow JavaScript files to be compiled
"allowSyntheticDefaultImports": true, // Allow default imports from modules with no default export
"baseUrl": "src",
"declaration": true, // Generate corresponding .d.ts file
"esModuleInterop": true, // Disables namespace imports (import * as fs from "fs") and enables CJS/AMD/UMD style imports (import fs from "fs")
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file.
"incremental": true, // Enable incremental compilation by reading/writing information from prior compilations to a file on disk
"isolatedModules": true, // Unconditionally emit imports for unresolved files
"jsx": "react", // Support JSX in .tsx files
"lib": ["dom", "dom.iterable", "esnext"], // List of library files to be included in the compilation
"module": "esnext", // Specify module code generation
"moduleResolution": "node", // Resolve modules using Node.js style
"noEmit": false, // Do not emit output (meaning do not compile code, only perform type checking)
"noFallthroughCasesInSwitch": true, // Report errors for fallthrough cases in switch statement
"noUnusedLocals": true, // Report errors on unused locals
"noUnusedParameters": true, // Report errors on unused parameters
"resolveJsonModule": true, // Include modules imported with .json extension
"outDir": "./dist",
"skipLibCheck": true, // Skip type checking of all declaration files
"sourceMap": true, // Generate corrresponding .map file
"strict": true, // Enable all strict type checking options
"target": "es6" // Specify ECMAScript target version
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules", "**/*.test.ts", "**/*.test.tsx", "src/dev.tsx"]
}