@langpkg/mcs_gen 0.0.1

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.
@@ -0,0 +1,23 @@
1
+ // test/index.test.ts
2
+ //
3
+ // Made with ❤️ by Maysara.
4
+
5
+
6
+
7
+ // ╔════════════════════════════════════════ PACK ════════════════════════════════════════╗
8
+
9
+ import { describe, it, expect } from 'bun:test';
10
+
11
+ // ╚══════════════════════════════════════════════════════════════════════════════════════╝
12
+
13
+
14
+
15
+ // ╔════════════════════════════════════════ TEST ════════════════════════════════════════╗
16
+
17
+ describe('@langpkg/mcs_gen', () => {
18
+ it('temp test', () => {
19
+ expect(1 + 1).toBe(2);
20
+ });
21
+ });
22
+
23
+ // ╚══════════════════════════════════════════════════════════════════════════════════════╝
package/tsconfig.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+
3
+ "compilerOptions" : {
4
+ "target" : "ES2020",
5
+ "lib" : ["DOM", "ES2020", "ESNext"],
6
+ "module" : "ESNext",
7
+ "moduleResolution" : "bundler",
8
+ "types" : ["bun"],
9
+ "allowImportingTsExtensions" : true,
10
+ "resolveJsonModule" : true,
11
+ "declaration" : true,
12
+ "outDir" : "./dist",
13
+ "noEmit" : true,
14
+ "isolatedModules" : true,
15
+ "esModuleInterop" : true,
16
+ "forceConsistentCasingInFileNames" : true,
17
+ "strict" : true,
18
+ "skipLibCheck" : true,
19
+ "ignoreDeprecations" : "6.0"
20
+ },
21
+
22
+ "include" : ["src", "test"],
23
+ "exclude" : ["node_modules", "dist"]
24
+
25
+ }
package/tsup.config.ts ADDED
@@ -0,0 +1,36 @@
1
+ // tsup.config.ts
2
+ //
3
+ // Made with ❤️ by Maysara.
4
+
5
+
6
+
7
+ // ╔════════════════════════════════════════ PACK ════════════════════════════════════════╗
8
+
9
+ import { defineConfig } from 'tsup';
10
+
11
+ // ╚══════════════════════════════════════════════════════════════════════════════════════╝
12
+
13
+
14
+
15
+ // ╔═══════════════════════════════════════ CONST ════════════════════════════════════════╗
16
+
17
+ const rules = {
18
+ "clean" : true,
19
+ "dts" : true,
20
+ "entry" : ["src/index.ts"],
21
+ "format" : ["esm", "cjs"],
22
+ "minify" : true,
23
+ "sourcemap" : false,
24
+ "splitting" : true
25
+ };
26
+
27
+ // ╚══════════════════════════════════════════════════════════════════════════════════════╝
28
+
29
+
30
+
31
+ // ╔════════════════════════════════════════ CONF ════════════════════════════════════════╗
32
+
33
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
34
+ export default defineConfig(rules as any);
35
+
36
+ // ╚══════════════════════════════════════════════════════════════════════════════════════╝