sn-typescript-util 1.4.1 → 1.4.2

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/README.md CHANGED
@@ -181,7 +181,7 @@ Inside of the application directory (after the build), the project structure wil
181
181
  │ │ └── Dashboard.link.ts
182
182
  │ │ └── Dashboard.script.ts
183
183
  │ └── Types/
184
- │ └── Table.ts
184
+ │ └── BaseTable.ts
185
185
  │ └── User.ts
186
186
  ├── .eslintrc
187
187
  └── app.config.json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sn-typescript-util",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "A TypeScript utility for ServiceNow developers using VS Code",
5
5
  "bin": {
6
6
  "snts": "bin/snts.js"
package/tsconfig.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "ESNext",
3
+ "esModuleInterop": true,
4
4
  "module": "NodeNext",
5
5
  "noImplicitAny": true,
6
- "esModuleInterop": true,
7
6
  "outDir": "bin",
8
7
  "resolveJsonModule": true,
9
8
  "skipLibCheck": true,
9
+ "strict": true,
10
+ "target": "ESNext",
10
11
  "types": ["bun-types"]
11
12
  },
12
13
  "include": ["scripts"]
package/.eslintrc.yml DELETED
@@ -1,4 +0,0 @@
1
- extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended']
2
- parser: '@typescript-eslint/parser'
3
- plugins: ['@typescript-eslint']
4
- root: true