@tsonic/globals 0.3.2 → 0.3.3
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/index.d.ts +1 -1
- package/package.json +2 -6
- package/tsconfig.json +11 -0
package/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* For JS mode: Use with @tsonic/js-globals which extends base types with JS methods.
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
|
-
import { String$instance, Double$instance, Boolean$instance } from "@tsonic/dotnet/System";
|
|
15
|
+
import { String$instance, Double$instance, Boolean$instance } from "@tsonic/dotnet/System.js";
|
|
16
16
|
|
|
17
17
|
declare global {
|
|
18
18
|
/**
|
package/package.json
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/globals",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Global type definitions for Tsonic with BCL primitive methods",
|
|
5
5
|
"main": "index.d.ts",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"index.d.ts",
|
|
9
|
-
"README.md"
|
|
10
|
-
],
|
|
11
7
|
"scripts": {
|
|
12
8
|
"typecheck": "tsc --noEmit"
|
|
13
9
|
},
|
|
14
10
|
"dependencies": {
|
|
15
|
-
"@tsonic/dotnet": "^0.7.
|
|
11
|
+
"@tsonic/dotnet": "^0.7.9"
|
|
16
12
|
},
|
|
17
13
|
"devDependencies": {
|
|
18
14
|
"typescript": "^5.0.0"
|