@rsdk/tsconfig 2.4.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,70 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [2.4.0](https://github.com/R-Vision/rsdk/compare/v2.3.1...v2.4.0) (2023-06-15)
7
+
8
+ ### Features
9
+
10
+ * change publish config for eslint-plugin, prettier-config, tsconfig ([def7140](https://github.com/R-Vision/rsdk/commit/def714063af0236f35a4290ffc168af4d4037247))
11
+
12
+ # [2.0.0](https://github.com/R-Vision/rsdk/compare/v1.0.12...v2.0.0) (2023-06-06)
13
+
14
+ ### Bug Fixes
15
+
16
+ * cycle deps, remove outDir from base.json in tsconfig, rework interact with AutodocMetadata and RsdkMetadata, fix unprovided imports ([cc6434b](https://github.com/R-Vision/rsdk/commit/cc6434b9d165e570bdbb2baad76b00acd14577b2))
17
+
18
+ ## 1.0.12 (2023-05-23)
19
+
20
+ ### Bug Fixes
21
+
22
+ * remove private dependencies from `peerDependencies` section ([0bce6ff](https://github.com/R-Vision/rsdk/commit/0bce6ffb5b699e2ed1dc9aca77cbdbf085267ff7))
23
+
24
+ ## 1.0.11 (2023-05-23)
25
+
26
+ **Note:** Version bump only for package @rsdk/tsconfig
27
+
28
+ ## 1.0.10 (2023-05-22)
29
+
30
+ ### Bug Fixes
31
+
32
+ * add "access: public" to new packages ([04d5983](https://github.com/R-Vision/rsdk/commit/04d5983cfa3e97c5d8219e07208a0499a8c6bc83))
33
+
34
+ ## 1.0.9 (2023-05-21)
35
+
36
+ **Note:** Version bump only for package @rsdk/tsconfig
37
+
38
+ ## 1.0.8 (2023-05-17)
39
+
40
+ **Note:** Version bump only for package @rsdk/tsconfig
41
+
42
+ ## 1.0.7 (2023-05-11)
43
+
44
+ **Note:** Version bump only for package @rsdk/tsconfig
45
+
46
+ ## 1.0.6 (2023-05-11)
47
+
48
+ **Note:** Version bump only for package @rsdk/tsconfig
49
+
50
+ ## 1.0.5 (2023-05-10)
51
+
52
+ **Note:** Version bump only for package @rsdk/tsconfig
53
+
54
+ ## 1.0.4 (2023-05-10)
55
+
56
+ **Note:** Version bump only for package @rsdk/tsconfig
57
+
58
+ ## 1.0.3 (2023-05-10)
59
+
60
+ ### Bug Fixes
61
+
62
+ * builtin make not private in npm ([50c83b6](https://github.com/R-Vision/rsdk/commit/50c83b6454f9a89f1e99d3b33a497ce2c029d8c6))
63
+
64
+ ## 1.0.2 (2023-05-10)
65
+
66
+ **Note:** Version bump only for package @rsdk/tsconfig
67
+
68
+ ## 1.0.1 (2023-05-07)
69
+
70
+ **Note:** Version bump only for package @rsdk/tsconfig
package/base.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Default",
4
+ "compilerOptions": {
5
+ "strict": true,
6
+ "module": "commonjs",
7
+ "declaration": true,
8
+ "removeComments": false,
9
+ "emitDecoratorMetadata": true,
10
+ "experimentalDecorators": true,
11
+ "allowSyntheticDefaultImports": true,
12
+ "target": "ES2022",
13
+ "esModuleInterop": true,
14
+ "sourceMap": true,
15
+ "incremental": false,
16
+ "skipLibCheck": true,
17
+ "strictNullChecks": true,
18
+ "noImplicitAny": true,
19
+ "strictBindCallApply": true,
20
+ // typeorm
21
+ "strictPropertyInitialization": false,
22
+ "forceConsistentCasingInFileNames": true,
23
+ "noFallthroughCasesInSwitch": true,
24
+ "exactOptionalPropertyTypes": true
25
+ }
26
+ }
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@rsdk/tsconfig",
3
+ "version": "2.4.0",
4
+ "main": "index.js",
5
+ "license": "Apache License 2.0",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "gitHead": "2c2c1eac3027955838c0883ca1cb76b051a541ed"
10
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
4
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "base.json",
3
+ }