UNPKG

licelfile

Version:

A Bun package for reading licel files (from lidar transient recorder)

35 lines 861 B
{ "compilerOptions": { // Environment setup & latest features "lib": [ "ESNext" ], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", "declaration": true, "declarationDir": "dist", "emitDeclarationOnly": false, "jsx": "react-jsx", "allowJs": true, "outDir": "dist", "esModuleInterop": true, // Bundler mode "moduleResolution": "bundler", //"allowImportingTsExtensions": true, "verbatimModuleSyntax": true, //"noEmit": true, // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false }, "include": [ "src" ] }