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 +1 -1
- package/package.json +1 -1
- package/tsconfig.json +3 -2
- package/.eslintrc.yml +0 -4
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
|
-
│ └──
|
|
184
|
+
│ └── BaseTable.ts
|
|
185
185
|
│ └── User.ts
|
|
186
186
|
├── .eslintrc
|
|
187
187
|
└── app.config.json
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"
|
|
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