@qualweb/qw-element
Advanced tools
Comparing version 0.1.28 to 0.1.29
@@ -54,2 +54,1 @@ declare class QWElement { | ||
export { QWElement }; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -438,2 +438,1 @@ "use strict"; | ||
exports.QWElement = QWElement; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@qualweb/qw-element", | ||
"version": "0.1.28", | ||
"version": "0.1.29", | ||
"description": "QualWeb element interface and utilities", | ||
@@ -31,11 +31,11 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@qualweb/types": "^0.4.46", | ||
"@qualweb/types": "^0.4.52", | ||
"@tsconfig/recommended": "^1.0.1", | ||
"@types/node": "^14.14.7", | ||
"@types/node": "^14.14.20", | ||
"chai": "^4.2.0", | ||
"esm": "^3.2.25", | ||
"mocha": "^8.2.1", | ||
"typescript": "^4.0.5" | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": {} | ||
} |
@@ -6,29 +6,35 @@ { | ||
"resolveJsonModule": true, | ||
"declaration": true, /* Generates corresponding '.d.ts' file. */ | ||
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ | ||
"sourceMap": true, /* Generates corresponding '.map' file. */ | ||
"outDir": "./dist", /* Redirect output structure to the directory. */ | ||
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ | ||
"removeComments": true, /* Do not emit comments to output. */ | ||
"declaration": true /* Generates corresponding '.d.ts' file. */, | ||
"declarationMap": false /* Generates a sourcemap for each corresponding '.d.ts' file. */, | ||
"sourceMap": false /* Generates corresponding '.map' file. */, | ||
"outDir": "./dist" /* Redirect output structure to the directory. */, | ||
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */, | ||
"removeComments": true /* Do not emit comments to output. */, | ||
/* Strict Type-Checking Options */ | ||
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ | ||
"strictNullChecks": true, /* Enable strict null checks. */ | ||
"strictFunctionTypes": true, /* Enable strict checking of function types. */ | ||
"strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ | ||
"strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ | ||
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ | ||
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ | ||
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */, | ||
"strictNullChecks": true /* Enable strict null checks. */, | ||
"strictFunctionTypes": true /* Enable strict checking of function types. */, | ||
"strictBindCallApply": true /* Enable strict 'bind', 'call', and 'apply' methods on functions. */, | ||
"strictPropertyInitialization": true /* Enable strict checking of property initialization in classes. */, | ||
"noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */, | ||
"alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */, | ||
/* Additional Checks */ | ||
"noUnusedLocals": true, /* Report errors on unused locals. */ | ||
"noUnusedParameters": true, /* Report errors on unused parameters. */ | ||
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ | ||
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ | ||
"noUnusedLocals": true /* Report errors on unused locals. */, | ||
"noUnusedParameters": true /* Report errors on unused parameters. */, | ||
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */, | ||
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */, | ||
/* Module Resolution Options */ | ||
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ | ||
"typeRoots": ["@qualweb/types"], /* List of folders to include type definitions from. */ | ||
"types": ["@qualweb/types", "node", "domhandler"] /* Type declaration files to be included in compilation. */ | ||
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, | ||
"typeRoots": [ | ||
"@qualweb/types" | ||
] /* List of folders to include type definitions from. */, | ||
"types": [ | ||
"@qualweb/types", | ||
"node", | ||
"domhandler" | ||
] /* Type declaration files to be included in compilation. */ | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
976
40161
10