UNPKG

booleanlab

Version:

A comprehensive TypeScript utility library for advanced boolean operations. Simplify your boolean logic with easy-to-use functions.

15 lines (14 loc) 695 B
{ "compilerOptions": { "target": "ES2017", // or ES2018, ES2020, etc. "lib": ["ES2017", "DOM"], "module": "ESNext", // Use ES Modules for compatibility "declaration": true, // Generate .d.ts files "outDir": "./dist", // Output to 'dist' folder "rootDir": "./src", // Set the source folder as 'src' "strict": true, // Enable strict type-checking "esModuleInterop": true // Allow interoperability with CommonJS }, "include": ["src"], // Include all files in the 'src' folder "exclude": ["node_modules"] // Exclude node_modules }