@kanian77/choux 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tsconfig.json +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanian77/choux",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "A simple plugin framework for TypeScript.",
5
5
  "author": {
6
6
  "name": "Patrick Assoa Adou",
package/tsconfig.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "outDir": "./dist",
4
- "rootDir": "./src",
5
- "composite": true,
3
+ "outDir": "dist",
4
+ "rootDir": "src",
6
5
  "experimentalDecorators": true,
7
6
  "emitDecoratorMetadata": true,
8
- "target": "ES2021",
9
- "module": "ESNext",
7
+ "target": "ESNext",
8
+ "module": "preserve",
10
9
  "moduleResolution": "bundler",
10
+
11
11
  "esModuleInterop": true,
12
12
  "strict": true,
13
13
  "skipLibCheck": true,
14
14
  "forceConsistentCasingInFileNames": true,
15
- "isolatedModules": true,
16
15
  "resolveJsonModule": true,
16
+ "emitDeclarationOnly": false,
17
17
  "declaration": true,
18
- "declarationMap": true, // Optional: creates sourcemap for .d.ts files
19
- "sourceMap": true // Optional: creates sourcemaps for .js files
18
+ "declarationMap": true, // Optional: creates sourcemap for .d.ts files
19
+ "sourceMap": true // Optional: creates sourcemaps for .js files
20
20
  },
21
- "include": ["src/**/*"],
21
+ "include": ["src/**/*"]
22
22
  }