@lipemat/js-boilerplate-shared 0.2.1 → 0.2.2

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,37 @@
1
+ {
2
+ "//~~": "PHPStorm will only see changes to the file if you re-save the project root's tsconfig.json file",
3
+ "$schema": "https://json.schemastore.org/tsconfig",
4
+ "display": "JS Boilerplate",
5
+ "compilerOptions": {
6
+ "allowImportingTsExtensions": true,
7
+ "allowSyntheticDefaultImports": true,
8
+ "esModuleInterop": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "jsx": "react-jsx",
11
+ "lib": [
12
+ "DOM",
13
+ "ES2022"
14
+ ],
15
+ "module": "ESNext",
16
+ "moduleResolution": "bundler",
17
+ "noEmit": true,
18
+ "noFallthroughCasesInSwitch": true,
19
+ "noImplicitReturns": true,
20
+ "noImplicitThis": true,
21
+ "paths": {
22
+ "$src": [
23
+ "./js/src"
24
+ ],
25
+ "$src/*": [
26
+ "./js/src/*"
27
+ ]
28
+ },
29
+ "skipLibCheck": true,
30
+ "sourceMap": true,
31
+ "strict": true,
32
+ "strictBindCallApply": true,
33
+ "strictNullChecks": true,
34
+ "target": "ES2022",
35
+ "verbatimModuleSyntax": false
36
+ }
37
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lipemat/js-boilerplate-shared",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "license": "MIT",
5
5
  "description": "Shared utilities for all @lipemat boilerplate packages",
6
6
  "engines": {