sharetribe-cli 1.15.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 ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "compilerOptions": {
3
+ /* Language and Environment */
4
+ "target": "ES2022",
5
+ "lib": ["ES2022"],
6
+ "module": "NodeNext",
7
+ "moduleResolution": "NodeNext",
8
+
9
+ /* Emit */
10
+ "outDir": "./dist",
11
+ "rootDir": "./src",
12
+ "sourceMap": true,
13
+ "declaration": true,
14
+ "declarationMap": true,
15
+ "removeComments": false,
16
+ "importHelpers": false,
17
+ "noEmit": true,
18
+
19
+ /* Interop Constraints */
20
+ "esModuleInterop": true,
21
+ "allowSyntheticDefaultImports": true,
22
+ "forceConsistentCasingInFileNames": true,
23
+ "isolatedModules": true,
24
+
25
+ /* Type Checking */
26
+ "strict": true,
27
+ "noImplicitAny": true,
28
+ "strictNullChecks": true,
29
+ "strictFunctionTypes": true,
30
+ "strictBindCallApply": true,
31
+ "strictPropertyInitialization": true,
32
+ "noImplicitThis": true,
33
+ "alwaysStrict": true,
34
+ "noUnusedLocals": true,
35
+ "noUnusedParameters": true,
36
+ "noImplicitReturns": true,
37
+ "noFallthroughCasesInSwitch": true,
38
+ "noUncheckedIndexedAccess": true,
39
+ "noImplicitOverride": true,
40
+ "noPropertyAccessFromIndexSignature": true,
41
+
42
+ /* Completeness */
43
+ "skipLibCheck": true,
44
+
45
+ /* Module Resolution */
46
+ "resolveJsonModule": true
47
+ },
48
+ "include": ["src/**/*"],
49
+ "exclude": ["node_modules", "dist", "test"]
50
+ }
@@ -0,0 +1,12 @@
1
+ import { defineConfig } from 'vitest/config';
2
+
3
+ export default defineConfig({
4
+ test: {
5
+ globals: true,
6
+ environment: 'node',
7
+ coverage: {
8
+ provider: 'v8',
9
+ reporter: ['text', 'json', 'html'],
10
+ },
11
+ },
12
+ });