@sklv-labs/ts-dev-configs 0.1.5 → 0.1.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sklv-labs/ts-dev-configs",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Unified development configurations for TypeScript projects with support for React, NestJS, and more",
5
5
  "keywords": [
6
6
  "typescript",
@@ -60,8 +60,7 @@
60
60
  "typescript": "^5.9.0",
61
61
  "eslint": "^9.0.0",
62
62
  "prettier": "^3.6.0",
63
- "eslint-plugin-prettier": "^5.5.4",
64
- "@darraghor/eslint-plugin-nestjs-typed": "^7.0.0"
63
+ "eslint-plugin-prettier": "^5.5.4"
65
64
  },
66
65
  "peerDependenciesMeta": {
67
66
  "typescript": {
@@ -6,17 +6,12 @@ import globals from 'globals';
6
6
  import prettier from 'eslint-config-prettier';
7
7
  import prettierPlugin from 'eslint-plugin-prettier';
8
8
 
9
- import eslintNestJs from '@darraghor/eslint-plugin-nestjs-typed';
10
-
11
9
  export default defineConfig([
12
10
  // Base recommended configs
13
11
  eslint.configs.recommended,
14
12
  ...tseslint.configs.recommended,
15
13
  ...tseslint.configs.recommendedTypeChecked,
16
14
 
17
- // NestJS Typed plugin recommended rules
18
- ...eslintNestJs.configs.flatRecommended,
19
-
20
15
  // Global ignores
21
16
  {
22
17
  ignores: ['dist/**', 'build/**', 'node_modules/**', '*.config.js', '*.config.ts', '*.config.mjs'],
@@ -2,8 +2,8 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "extends": "../base/tsconfig.json",
4
4
  "compilerOptions": {
5
- "module": "CommonJS",
6
- "moduleResolution": "node",
5
+ "module": "NodeNext",
6
+ "moduleResolution": "NodeNext",
7
7
  "target": "ES2024",
8
8
  "lib": [
9
9
  "ES2024"
@@ -14,15 +14,14 @@
14
14
  "experimentalDecorators": true,
15
15
  "allowSyntheticDefaultImports": true,
16
16
  "sourceMap": true,
17
- "outDir": "./dist",
18
- "baseUrl": "./",
19
17
  "incremental": true,
20
18
  "skipLibCheck": true,
21
19
  "strictNullChecks": true,
20
+ "strictPropertyInitialization": false,
22
21
  "noImplicitAny": true,
23
22
  "strictBindCallApply": true,
24
23
  "forceConsistentCasingInFileNames": true,
25
- "noFallthroughCasesInSwitch": true
24
+ "noFallthroughCasesInSwitch": true,
26
25
  },
27
26
  "files": []
28
27
  }