memcache 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tsconfig.json DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "module": "ESNext",
5
- "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
6
- "baseUrl": "./src", /* Specify the base directory to resolve non-relative module names. */
7
-
8
- /* Emit */
9
- "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
10
- "sourceMap": true, /* Create source map files for emitted JavaScript files. */
11
- "outDir": "./dist", /* Specify an output folder for all emitted files. */
12
-
13
- /* Interop Constraints */
14
- "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
15
- "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
16
-
17
- /* Type Checking */
18
- "strict": true, /* Enable all strict type-checking options. */
19
-
20
- /* Completeness */
21
- "skipLibCheck": true, /* Skip type checking all .d.ts files. */
22
- "lib": [
23
- "ESNext", "DOM"
24
- ]
25
- },
26
- "include": [
27
- "src/**/*.ts"
28
- ]
29
- }
package/vitest.config.ts DELETED
@@ -1,16 +0,0 @@
1
- import {defineConfig} from 'vitest/config';
2
-
3
- export default defineConfig({
4
- test: {
5
- include: ['test/*.test.ts'],
6
- coverage: {
7
- reporter: ['text', 'json', 'lcov'],
8
- exclude: [
9
- 'site/**',
10
- 'vitest.config.ts',
11
- 'dist/**',
12
- 'test/**',
13
- ],
14
- },
15
- },
16
- });