svn-visualizer 0.1.0 → 0.1.1

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,43 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- /* Language and Environment */
4
- "target": "ES2023" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
5
- "lib": ["ES2023", "DOM"] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
6
- "module": "ESNext" /* Specify what module code is generated. */,
7
- "moduleResolution": "bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
8
- "types": ["node"],
9
- "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. */,
10
- "resolveJsonModule": true /* Enable importing .json files. */,
11
- "allowImportingTsExtensions": /* Allow imports to include TypeScript file extensions. */ true,
12
- "noEmit": true /* Disable emitting files from a compilation. */,
13
-
14
- /* Strict Type-Checking Options */
15
- "strict": true /* Enable all strict type-checking options. */,
16
- "noImplicitAny": true /* Enable error reporting for expressions and declarations with an implied 'any' type. */,
17
- "strictNullChecks": true /* When type checking, take into account 'null' and 'undefined'. */,
18
- "strictFunctionTypes": true /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */,
19
- "strictBindCallApply": true /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */,
20
- "strictPropertyInitialization": true /* Check for class properties that are declared but not set in the constructor. */,
21
- "noImplicitThis": true /* Enable error reporting when 'this' is given the type 'any'. */,
22
- "useUnknownInCatchVariables": true /* Default catch clause variables as 'unknown' instead of 'any'. */,
23
- "alwaysStrict": true /* Ensure 'use strict' is always emitted. */,
24
- "noUnusedLocals": true /* Enable error reporting when local variables aren't read. */,
25
- "noUnusedParameters": true /* Raise an error when a function parameter isn't read. */,
26
- "exactOptionalPropertyTypes": true /* Interpret optional property types as strictly typed, preventing assignment of 'undefined'. */,
27
- "noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */,
28
- "noFallthroughCasesInSwitch": true /* Enable error reporting for fallthrough cases in switch statements. */,
29
- "noUncheckedIndexedAccess": true /* Add 'undefined' to a type when accessed using an index. */,
30
- "noImplicitOverride": true /* Ensure overriding members in derived classes are marked with an override modifier. */,
31
- "noPropertyAccessFromIndexSignature": true /* Enforces using indexed accessors for keys declared using an indexed type. */,
32
- "allowUnusedLabels": false /* Disable error reporting for unused labels. */,
33
- "allowUnreachableCode": false /* Disable error reporting for unreachable code. */,
34
-
35
- /* Emit */
36
- "outDir": "./dist" /* Specify an output folder for all emitted files. */,
37
-
38
- /* Completeness */
39
- "skipLibCheck": true /* Skip type checking all .d.ts files. */,
40
- "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */
41
- },
42
- "include": ["src/**/*"]
43
- }
@@ -1,15 +0,0 @@
1
- import path from 'node:path';
2
- import {defineConfig} from 'vite';
3
-
4
- export default defineConfig({
5
- build: {
6
- lib: {
7
- entry: path.resolve(import.meta.dirname, 'src/client/main.ts'),
8
- formats: ['es'],
9
- fileName: 'main',
10
- },
11
- outDir: 'dist/client',
12
- emptyOutDir: true,
13
- target: 'es2022',
14
- },
15
- });
package/vite.config.ts DELETED
@@ -1,26 +0,0 @@
1
- import {defineConfig} from 'vitest/config';
2
- import path from 'node:path';
3
- import packageJson from './package.json' with {type: 'json'};
4
-
5
- export default defineConfig({
6
- define: {
7
- APP_VERSION: JSON.stringify(packageJson.version),
8
- },
9
- build: {
10
- ssr: true,
11
- lib: {
12
- entry: path.resolve(import.meta.dirname, 'src/index.ts'),
13
- formats: ['es'],
14
- fileName: 'index',
15
- },
16
- outDir: 'dist',
17
- emptyOutDir: false,
18
- target: 'node22',
19
- },
20
- test: {
21
- coverage: {
22
- provider: 'v8',
23
- reporter: ['text', 'json', 'html', 'lcov'],
24
- },
25
- },
26
- });