node-liblzma
Version:
NodeJS wrapper for liblzma
51 lines (44 loc) • 1.22 kB
JSON
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2020",
"lib": ["ES2020", "ES2020.Promise"],
"module": "nodenext",
"moduleResolution": "nodenext",
/* Output */
"outDir": "./lib",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"removeComments": false,
"importHelpers": false,
/* Interop Constraints */
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"noImplicitOverride": true,
/* Completeness */
"skipLibCheck": true,
"resolveJsonModule": true,
/* Node.js specific */
"types": ["node", "vitest"],
/* Emit */
"noEmitOnError": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "lib", "build", "test", "**/*.coffee", "**/*.d.ts"],
"ts-node": {
"esm": true
}
}