@datapos/datapos-development 0.3.428 → 0.3.430
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/package.json +1 -1
- package/tsconfig.json +18 -16
- package/dist/types/vite.config.d.ts +0 -5
- /package/dist/types/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/types/{src/operations → operations}/auditDependencies.d.ts +0 -0
- /package/dist/types/{src/operations → operations}/checkDependencies.d.ts +0 -0
- /package/dist/types/{src/operations → operations}/documentDependencies.d.ts +0 -0
- /package/dist/types/{src/operations → operations}/formatCode.d.ts +0 -0
- /package/dist/types/{src/operations → operations}/lintCode.d.ts +0 -0
- /package/dist/types/{src/operations → operations}/manageProject.d.ts +0 -0
- /package/dist/types/{src/operations → operations}/test.d.ts +0 -0
- /package/dist/types/{src/operations → operations}/updateDataPosDependencies.d.ts +0 -0
- /package/dist/types/{src/utilities → utilities}/cloudflare.d.ts +0 -0
- /package/dist/types/{src/utilities → utilities}/index.d.ts +0 -0
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
3
|
+
"declaration": true, // Emit '.d.ts' files so downstream consumers keep typings.
|
|
4
|
+
"esModuleInterop": true, // Permit default-import syntax when targeting CommonJS packages.
|
|
5
|
+
"exactOptionalPropertyTypes": true, // Preserve optional fields exactly instead of widening to undefined.
|
|
6
|
+
"forceConsistentCasingInFileNames": true, // Prevent case-mismatch imports that break on some filesystems.
|
|
7
|
+
"incremental": true, // Cache build info to speed up repeated compiles.
|
|
8
|
+
"lib": ["ESNext"], // Target only modern Node libs since this build is server-side.
|
|
9
|
+
"module": "NodeNext", // Emit NodeNext-compatible modules for native ESM tooling.
|
|
10
|
+
"moduleDetection": "force", // Treat every file as a module unless it is clearly script-only.
|
|
11
|
+
"moduleResolution": "nodenext", // Mirror NodeNext's resolver instead of bundler heuristics.
|
|
11
12
|
"noImplicitAny": true, // Disallow implicit any types to keep everything typed.
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
"noImplicitOverride": true, // Require explicit override keyword for subclass members.
|
|
14
|
+
"noUncheckedIndexedAccess": true, // Enforce checks when indexing into objects or arrays.
|
|
15
|
+
"noUnusedLocals": true, // Detect unused locals for tidier builds.
|
|
16
|
+
"noUnusedParameters": true, // Detect unused params to prevent drifting APIs.
|
|
17
|
+
"outDir": "dist", // Place compiler output in 'dist' directory.
|
|
18
|
+
"noPropertyAccessFromIndexSignature": true, // Catch dot-notation typos on index signatures.
|
|
18
19
|
"resolveJsonModule": true, // Allow importing JSON modules directly.
|
|
19
|
-
"skipLibCheck": true, // Skip type checking for .d.ts in node_modules to speed up builds.
|
|
20
|
+
"skipLibCheck": true, // Skip type checking for '.d.ts' in node_modules to speed up builds.
|
|
20
21
|
"sourceMap": true, // Emit source maps for better debugging.
|
|
21
22
|
"strict": true, // Enable the full strict type-checking suite.
|
|
22
23
|
"strictNullChecks": true, // Major strict setting: enforce null/undefined checks.
|
|
23
24
|
"target": "ESNext", // Target latest JavaScript syntax when emitting.
|
|
25
|
+
"tsBuildInfoFile": "./node_modules/.cache/tsconfig.tsbuildinfo", // Persist incremental metadata outside 'dist' directory.
|
|
24
26
|
"useDefineForClassFields": true // Use define semantics for class fields (aligns with JS standard).
|
|
25
27
|
},
|
|
26
|
-
"include": ["
|
|
28
|
+
"include": ["src/**/*"] // Type-check project sources only.
|
|
27
29
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|