@etsoo/materialui 1.3.38 → 1.3.39

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.
@@ -1,5 +1,5 @@
1
1
  /// <reference types="node" />
2
- import EventEmitter from "events";
2
+ import EventEmitter from "node:events";
3
3
  import { SignalRUser } from "./SignalRUser";
4
4
  import { OperationMessageDto } from "./OperationMessageDto";
5
5
  import { OperationMessageHandler } from "./OperationMessageHandler";
@@ -1,4 +1,4 @@
1
- import EventEmitter from "events";
1
+ import EventEmitter from "node:events";
2
2
  /**
3
3
  * Message utilities
4
4
  * 消息工具
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.3.38",
3
+ "version": "1.3.39",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,4 +1,4 @@
1
- import EventEmitter from "events";
1
+ import EventEmitter from "node:events";
2
2
  import { SignalRUser } from "./SignalRUser";
3
3
  import { OperationMessageDto } from "./OperationMessageDto";
4
4
  import { OperationMessageHandler } from "./OperationMessageHandler";
package/tsconfig.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
- "compilerOptions": {
3
- /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
- "target": "ES2019",
5
- "module": "ESNext",
6
- "allowJs": true,
7
- "moduleResolution": "node",
8
- "isolatedModules": true,
9
- "outDir": "./lib",
10
- "noEmit": false,
11
- "declaration": true,
12
- "strict": true,
13
- "esModuleInterop": true,
14
- "skipLibCheck": true,
15
- "jsx": "react",
16
- "forceConsistentCasingInFileNames": true
17
- },
18
- "include": ["src"]
2
+ "compilerOptions": {
3
+ /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
+ "target": "ES2019",
5
+ "module": "ESNext",
6
+ "allowJs": true,
7
+ "moduleResolution": "bundler",
8
+ "isolatedModules": true,
9
+ "outDir": "./lib",
10
+ "noEmit": false,
11
+ "declaration": true,
12
+ "strict": true,
13
+ "esModuleInterop": true,
14
+ "skipLibCheck": true,
15
+ "jsx": "react",
16
+ "forceConsistentCasingInFileNames": true
17
+ },
18
+ "include": ["src"]
19
19
  }