@codady/icax 0.0.2 → 0.0.5

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/dist/icax.cjs.js CHANGED
@@ -1,8 +1,8 @@
1
1
 
2
2
  /*!
3
- * @since Last modified: 2026-1-7 17:15:20
3
+ * @since Last modified: 2026-1-8 10:11:17
4
4
  * @name Icax event management system.
5
- * @version 0.0.1
5
+ * @version 0.0.4
6
6
  * @author AXUI development team <3217728223@qq.com>
7
7
  * @description Icax.
8
8
  * @see {@link https://icax.axui.cn|Official website}
@@ -56,7 +56,7 @@ const parseClasses = (data) => {
56
56
  return result.map((k) => trim(k, 'global')).filter(Boolean);
57
57
  };
58
58
 
59
- const style = (name = '') => `
59
+ const rtlStyle = (name = '') => `
60
60
  <style>
61
61
  :where([dir="rtl"]) .icax-${name},
62
62
  :where(:dir(rtl)) .icax-${name} {
@@ -72,7 +72,7 @@ const wrap = (content, fun, isRtl = false, options) => {
72
72
  origName = fun.name.replace(/([A-Z])/g, "-$1").toLowerCase();
73
73
  return `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="0 0 24 24" fill="none" stroke="${color}"
74
74
  stroke-width="${thickness}" stroke-linecap="round" stroke-linejoin="round" class="${origName} ${classes}">
75
- ${isRtl ? style(origName.split('-')[1]) : ''}
75
+ ${isRtl ? rtlStyle(origName.split('-')[1]) : ''}
76
76
  ${content}
77
77
  </svg>`;
78
78
  };
package/dist/icax.esm.js CHANGED
@@ -1,8 +1,8 @@
1
1
 
2
2
  /*!
3
- * @since Last modified: 2026-1-7 17:15:20
3
+ * @since Last modified: 2026-1-8 10:11:17
4
4
  * @name Icax event management system.
5
- * @version 0.0.1
5
+ * @version 0.0.4
6
6
  * @author AXUI development team <3217728223@qq.com>
7
7
  * @description Icax.
8
8
  * @see {@link https://icax.axui.cn|Official website}
@@ -54,7 +54,7 @@ const parseClasses = (data) => {
54
54
  return result.map((k) => trim(k, 'global')).filter(Boolean);
55
55
  };
56
56
 
57
- const style = (name = '') => `
57
+ const rtlStyle = (name = '') => `
58
58
  <style>
59
59
  :where([dir="rtl"]) .icax-${name},
60
60
  :where(:dir(rtl)) .icax-${name} {
@@ -70,7 +70,7 @@ const wrap = (content, fun, isRtl = false, options) => {
70
70
  origName = fun.name.replace(/([A-Z])/g, "-$1").toLowerCase();
71
71
  return `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="0 0 24 24" fill="none" stroke="${color}"
72
72
  stroke-width="${thickness}" stroke-linecap="round" stroke-linejoin="round" class="${origName} ${classes}">
73
- ${isRtl ? style(origName.split('-')[1]) : ''}
73
+ ${isRtl ? rtlStyle(origName.split('-')[1]) : ''}
74
74
  ${content}
75
75
  </svg>`;
76
76
  };
package/dist/icax.umd.js CHANGED
@@ -1,8 +1,8 @@
1
1
 
2
2
  /*!
3
- * @since Last modified: 2026-1-7 17:15:20
3
+ * @since Last modified: 2026-1-8 10:11:17
4
4
  * @name Icax event management system.
5
- * @version 0.0.1
5
+ * @version 0.0.4
6
6
  * @author AXUI development team <3217728223@qq.com>
7
7
  * @description Icax.
8
8
  * @see {@link https://icax.axui.cn|Official website}
@@ -60,7 +60,7 @@
60
60
  return result.map((k) => trim(k, 'global')).filter(Boolean);
61
61
  };
62
62
 
63
- const style = (name = '') => `
63
+ const rtlStyle = (name = '') => `
64
64
  <style>
65
65
  :where([dir="rtl"]) .icax-${name},
66
66
  :where(:dir(rtl)) .icax-${name} {
@@ -76,7 +76,7 @@
76
76
  origName = fun.name.replace(/([A-Z])/g, "-$1").toLowerCase();
77
77
  return `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="0 0 24 24" fill="none" stroke="${color}"
78
78
  stroke-width="${thickness}" stroke-linecap="round" stroke-linejoin="round" class="${origName} ${classes}">
79
- ${isRtl ? style(origName.split('-')[1]) : ''}
79
+ ${isRtl ? rtlStyle(origName.split('-')[1]) : ''}
80
80
  ${content}
81
81
  </svg>`;
82
82
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codady/icax",
3
- "version": "0.0.2",
3
+ "version": "0.0.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -9,7 +9,21 @@
9
9
  "description": "icax",
10
10
  "main": "./src/icax.js",
11
11
  "type": "module",
12
- "types": "./types/icax.d.ts",
12
+ "types": "./src/icax.ts",
13
+ "exports": {
14
+ ".": {
15
+ "import": "./dist/icax.esm.js",
16
+ "require": "./dist/icax.cjs.js",
17
+ "browser": "./dist/icax.umd.js",
18
+ "default": "./dist/icax.esm.js",
19
+ "types": "./types/icax.d.ts"
20
+ },
21
+ "./src/*": {
22
+ "import": "./src/*.js",
23
+ "require": "./src/*.js",
24
+ "types": "./src/*.ts"
25
+ }
26
+ },
13
27
  "directories": {
14
28
  "doc": "docs"
15
29
  },
@@ -70,7 +84,7 @@
70
84
  },
71
85
  "homepage": "https://www.axui.cn",
72
86
  "dependencies": {
73
- "@codady/utils": "^0.0.25",
87
+ "@codady/utils": "^0.0.31",
74
88
  "simple-git": "^3.27.0"
75
89
  }
76
90
  }
package/src/icax.js CHANGED
@@ -1,17 +1,17 @@
1
1
  /**
2
- * Last modified: 2026/01/07 09:48:55
2
+ * Last modified: 2026/01/08 09:57:40
3
3
  */
4
4
  'use strict';
5
- import icaxCheck from "./icaxCheck";
6
- import icaxCircle from "./icaxCircle";
7
- import icaxClipboard from "./icaxClipboard";
8
- import icaxClose from "./icaxClose";
9
- import icaxCopy from "./icaxCopy";
10
- import icaxDown from "./icaxDown";
11
- import icaxLeft from "./icaxLeft";
12
- import icaxRight from "./icaxRight";
13
- import icaxSquare from "./icaxSquare";
14
- import icaxUp from "./icaxUp";
5
+ import icaxCheck from "./icaxCheck.js";
6
+ import icaxCircle from "./icaxCircle.js";
7
+ import icaxClipboard from "./icaxClipboard.js";
8
+ import icaxClose from "./icaxClose.js";
9
+ import icaxCopy from "./icaxCopy.js";
10
+ import icaxDown from "./icaxDown.js";
11
+ import icaxLeft from "./icaxLeft.js";
12
+ import icaxRight from "./icaxRight.js";
13
+ import icaxSquare from "./icaxSquare.js";
14
+ import icaxUp from "./icaxUp.js";
15
15
  const icax = {
16
16
  left: icaxLeft,
17
17
  right: icaxRight,
package/src/icax.ts CHANGED
@@ -1,20 +1,18 @@
1
1
  /**
2
- * Last modified: 2026/01/07 09:48:55
2
+ * Last modified: 2026/01/08 10:11:09
3
3
  */
4
4
  'use strict'
5
5
 
6
- import icaxCheck from "./icaxCheck";
7
- import icaxCircle from "./icaxCircle";
8
- import icaxClipboard from "./icaxClipboard";
9
- import icaxClose from "./icaxClose";
10
- import icaxCopy from "./icaxCopy";
11
- import icaxDown from "./icaxDown";
12
- import icaxLeft from "./icaxLeft";
13
- import icaxRight from "./icaxRight";
14
- import icaxSquare from "./icaxSquare";
15
- import icaxUp from "./icaxUp";
16
-
17
-
6
+ import icaxCheck from "./icaxCheck.js";
7
+ import icaxCircle from "./icaxCircle.js";
8
+ import icaxClipboard from "./icaxClipboard.js";
9
+ import icaxClose from "./icaxClose.js";
10
+ import icaxCopy from "./icaxCopy.js";
11
+ import icaxDown from "./icaxDown.js";
12
+ import icaxLeft from "./icaxLeft.js";
13
+ import icaxRight from "./icaxRight.js";
14
+ import icaxSquare from "./icaxSquare.js";
15
+ import icaxUp from "./icaxUp.js";
18
16
 
19
17
  const icax = {
20
18
  left: icaxLeft,
package/src/icaxCheck.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxCheck = (options) => wrap(`<polyline points="20 6 9 17 4 12"></polyline>`, icaxCheck, false, options);
3
3
  export default icaxCheck;
package/src/icaxCheck.ts CHANGED
@@ -1,5 +1,7 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+
2
+ import { IcaxOptions } from "../types/icax.js";
3
+ import wrap from "./wrap.js";
4
+
3
5
 
4
6
  const icaxCheck = (options?: IcaxOptions): string =>
5
7
  wrap(
package/src/icaxCircle.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxCircle = (options) => wrap(`<circle cx="12" cy="12" r="10"></circle>`, icaxCircle, false, options);
3
3
  export default icaxCircle;
package/src/icaxCircle.ts CHANGED
@@ -1,5 +1,6 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
+
3
4
 
4
5
  const icaxCircle = (options?: IcaxOptions): string =>
5
6
  wrap(
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxClipboard = (options) => wrap(`<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect>`, icaxClipboard, false, options);
3
3
  export default icaxClipboard;
@@ -1,5 +1,6 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
+
3
4
 
4
5
  const icaxClipboard = (options?: IcaxOptions): string =>
5
6
  wrap(
package/src/icaxClose.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxClose = (options) => wrap(`<line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line>`, icaxClose, false, options);
3
3
  export default icaxClose;
package/src/icaxClose.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxClose = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxCopy.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxCopy = (options) => wrap(`<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>`, icaxCopy, false, options);
3
3
  export default icaxCopy;
package/src/icaxCopy.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxCopy = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxDivide.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxDivide = (options) => wrap(`<circle cx="12" cy="6" r="2"></circle><line x1="5" y1="12" x2="19" y2="12"></line><circle cx="12" cy="18" r="2"></circle>`, icaxDivide, false, options);
3
3
  export default icaxDivide;
package/src/icaxDivide.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxDivide = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxDown.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxDown = (options) => wrap(`<polyline points="6 9 12 15 18 9"></polyline>`, icaxDown, false, options);
3
3
  export default icaxDown;
package/src/icaxDown.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxDown = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxLeft.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxLeft = (options) => wrap(`<polyline points="15 18 9 12 15 6"></polyline>`, icaxLeft, true, options);
3
3
  export default icaxLeft;
package/src/icaxLeft.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxLeft = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxMinus.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxMinus = (options) => wrap(`<line x1="5" y1="12" x2="19" y2="12"></line>`, icaxMinus, false, options);
3
3
  export default icaxMinus;
package/src/icaxMinus.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxMinus = (options?: IcaxOptions): string =>
5
5
  wrap(
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxPercent = (options) => wrap(`<line x1="19" y1="5" x2="5" y2="19"></line><circle cx="6.5" cy="6.5" r="2.5"></circle><circle cx="17.5" cy="17.5" r="2.5"></circle>`, icaxPercent, false, options);
3
3
  export default icaxPercent;
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxPercent = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxPlus.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxPlus = (options) => wrap(`<line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line>`, icaxPlus, false, options);
3
3
  export default icaxPlus;
package/src/icaxPlus.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxPlus = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxRight.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxRight = (options) => wrap(`<polyline points="9 18 15 12 9 6"></polyline>`, icaxRight, true, options);
3
3
  export default icaxRight;
package/src/icaxRight.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxRight = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxSquare.js CHANGED
@@ -1,3 +1,3 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxSquare = (options) => wrap(`<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>`, icaxSquare, false, options);
3
3
  export default icaxSquare;
package/src/icaxSquare.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxSquare = (options?: IcaxOptions): string =>
5
5
  wrap(
package/src/icaxUp.js CHANGED
@@ -1,4 +1,4 @@
1
- import wrap from "./wrap";
1
+ import wrap from "./wrap.js";
2
2
  const icaxUp = (options) => wrap(`<polyline points="18 15 12 9 6 15"></polyline>`, icaxUp, false, options);
3
3
  ;
4
4
  export default icaxUp;
package/src/icaxUp.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IcaxOptions } from "../types/icax";
2
- import wrap from "./wrap";
1
+ import { IcaxOptions } from "../types/icax.js";
2
+ import wrap from "./wrap.js";
3
3
 
4
4
  const icaxUp = (options?: IcaxOptions): string =>
5
5
  wrap(
@@ -1,4 +1,4 @@
1
- export const style = (name = '') => `
1
+ const rtlStyle = (name = '') => `
2
2
  <style>
3
3
  :where([dir="rtl"]) .icax-${name},
4
4
  :where(:dir(rtl)) .icax-${name} {
@@ -7,3 +7,4 @@ export const style = (name = '') => `
7
7
  }
8
8
  </style>
9
9
  `;
10
+ export default rtlStyle;
@@ -1,4 +1,4 @@
1
- export const style =(name:string='')=> `
1
+ const rtlStyle =(name:string='')=> `
2
2
  <style>
3
3
  :where([dir="rtl"]) .icax-${name},
4
4
  :where(:dir(rtl)) .icax-${name} {
@@ -6,4 +6,5 @@ export const style =(name:string='')=> `
6
6
  transform-origin: center;
7
7
  }
8
8
  </style>
9
- `;
9
+ `;
10
+ export default rtlStyle;
package/src/wrap.js CHANGED
@@ -1,12 +1,12 @@
1
- import parseClasses from "../node_modules/@codady/utils/src/parseClasses";
2
- import { style } from "./style";
1
+ import parseClasses from "@codady/utils/parseClasses";
2
+ import rtlStyle from "./rtlStyle.js";
3
3
  const wrap = (content, fun, isRtl = false, options) => {
4
4
  const size = options?.size || '1em', color = options?.color || 'currentColor', thickness = options?.thickness || 2, classes = options?.classes ? parseClasses(options.classes).join(' ') : '',
5
5
  // 得到 "icax-left"
6
6
  origName = fun.name.replace(/([A-Z])/g, "-$1").toLowerCase();
7
7
  return `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="0 0 24 24" fill="none" stroke="${color}"
8
8
  stroke-width="${thickness}" stroke-linecap="round" stroke-linejoin="round" class="${origName} ${classes}">
9
- ${isRtl ? style(origName.split('-')[1]) : ''}
9
+ ${isRtl ? rtlStyle(origName.split('-')[1]) : ''}
10
10
  ${content}
11
11
  </svg>`;
12
12
  };
package/src/wrap.ts CHANGED
@@ -1,6 +1,13 @@
1
- import parseClasses from "../node_modules/@codady/utils/src/parseClasses";
2
- import { IcaxOptions } from "../types/icax";
3
- import { style } from "./style";
1
+
2
+
3
+
4
+
5
+
6
+ import parseClasses from "@codady/utils/parseClasses";
7
+ import rtlStyle from "./rtlStyle.js";
8
+ import { IcaxOptions } from "../types/icax.js";
9
+
10
+
4
11
 
5
12
  const wrap = (content: string, fun: Function, isRtl = false, options?: IcaxOptions): string => {
6
13
  const size = options?.size || '1em',
@@ -11,7 +18,7 @@ const wrap = (content: string, fun: Function, isRtl = false, options?: IcaxOptio
11
18
  origName = fun.name.replace(/([A-Z])/g, "-$1").toLowerCase();
12
19
  return `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="0 0 24 24" fill="none" stroke="${color}"
13
20
  stroke-width="${thickness}" stroke-linecap="round" stroke-linejoin="round" class="${origName} ${classes}">
14
- ${isRtl ? style(origName.split('-')[1]) : ''}
21
+ ${isRtl ? rtlStyle(origName.split('-')[1]) : ''}
15
22
  ${content}
16
23
  </svg>`;
17
24
  }
package/tsconfig.json CHANGED
@@ -22,13 +22,13 @@
22
22
  // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
23
23
  // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
24
24
  /* Modules */
25
- "module": "es2020", /* Specify what module code is generated. */
25
+ "module": "nodenext", /* Specify what module code is generated. */
26
26
  // "rootDir": "./", /* Specify the root folder within your source files. */
27
- // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
28
- // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
27
+ "moduleResolution": "nodenext", /* Specify how TypeScript looks up a file from a given module specifier. */
28
+ //"baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
29
29
  // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
30
30
  // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
31
- // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
31
+ // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
32
32
  "types": ["node"], /* Specify type package names to be included without being referenced in a source file. */
33
33
  // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
34
34
  // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */