@knide/fs-prober
Version:
fs-prober is a browser-friendly NPM package for extracting file and folder structures from user-selected files or directories.
42 lines (35 loc) • 1.07 kB
JSON
{
"compilerOptions": {
"rootDir": "src",
"removeComments": false,
"allowSyntheticDefaultImports": true,
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "esnext",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"moduleResolution": "bundler",
"module": "esnext",
"noEmit": true,
/* Output Configuration: */
"outDir": "dist", // Specify the output directory for compiled files
"declaration": true, // Generate declaration files (.d.ts)
/* If your code runs in the DOM: */
"preserveWatchOutput": true,
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"exactOptionalPropertyTypes": true,
"verbatimModuleSyntax": true,
"isolatedDeclarations": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "dist-tsc"]
}