@alikuxac/tsconfig 1.0.0 → 1.0.3

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.
@@ -1,8 +1,8 @@
1
- # Changesets
2
-
3
- Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
- with multi-package repos, or single-package repos to help you version and publish your code. You can
5
- find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
-
7
- We have a quick list of common questions to get you started engaging with this project in
8
- [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
1
+ # Changesets
2
+
3
+ Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5
+ find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
+
7
+ We have a quick list of common questions to get you started engaging with this project in
8
+ [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -1,11 +1,11 @@
1
- {
2
- "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
3
- "changelog": "@changesets/cli/changelog",
4
- "commit": false,
5
- "fixed": [],
6
- "linked": [],
7
- "access": "public",
8
- "baseBranch": "master",
9
- "updateInternalDependencies": "patch",
10
- "ignore": []
11
- }
1
+ {
2
+ "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
3
+ "changelog": "@changesets/cli/changelog",
4
+ "commit": false,
5
+ "fixed": [],
6
+ "linked": [],
7
+ "access": "public",
8
+ "baseBranch": "master",
9
+ "updateInternalDependencies": "patch",
10
+ "ignore": []
11
+ }
@@ -13,7 +13,7 @@ jobs:
13
13
  pull-requests: 'write'
14
14
  steps:
15
15
  - name: Checkout
16
- uses: actions/checkout@v3
16
+ uses: actions/checkout@v4
17
17
 
18
18
  - name: Setup Volta
19
19
  uses: volta-cli/action@v4
package/.prettierrc.json CHANGED
@@ -1,4 +1,4 @@
1
- {
2
- "trailingComma": "all",
3
- "proseWrap": "always"
4
- }
1
+ {
2
+ "trailingComma": "all",
3
+ "proseWrap": "always"
4
+ }
package/.yarnrc.yml ADDED
@@ -0,0 +1,3 @@
1
+ nodeLinker: node-modules
2
+
3
+ npmPublishAccess: public
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @alikuxac/tsconfig
2
+
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - cff6da3: chore(deps): update actions/checkout action to v4
8
+ - 0f3b775: chore(deps): update all non-major dependencies
9
+ - 6217738: chore(deps): bump semver from 5.7.1 to 5.7.2
10
+ - 77f2ae4: chore(deps): update dependency typescript to v5
11
+ - e6f20ae: chore(deps): update dependency prettier to ^3.2.4
12
+ - 021fd9b: chore(deps): update dependency prettier to ^3.0.1
13
+ - e3dcc6d: chore(deps): update dependency prettier to v3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alikuxac/tsconfig",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "Alikuxac tsconfig file",
5
5
  "main": "./src/tsconfig.json",
6
6
  "tsconfig": "./src/tsconfig.json",
@@ -21,8 +21,9 @@
21
21
  "author": "Alikuxac <admin@alikuxac.xyz>",
22
22
  "license": "MIT",
23
23
  "devDependencies": {
24
- "prettier": "^2.8.3",
25
- "typescript": "^4.9.5"
24
+ "@changesets/cli": "^2.27.1",
25
+ "prettier": "^3.2.4",
26
+ "typescript": "^5.3.3"
26
27
  },
27
28
  "engines": {
28
29
  "node": ">=16.0.0"
package/src/tsconfig.json CHANGED
@@ -1,25 +1,25 @@
1
- {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "compilerOptions": {
4
- "module": "commonjs",
5
- "declaration": true,
6
- "removeComments": true,
7
- "emitDecoratorMetadata": true,
8
- "experimentalDecorators": true,
9
- "allowSyntheticDefaultImports": true,
10
- "target": "es2017",
11
- "sourceMap": true,
12
- "outDir": "./dist",
13
- "baseUrl": ".",
14
- "incremental": true,
15
- "skipLibCheck": true,
16
- "strictNullChecks": false,
17
- "noImplicitAny": false,
18
- "strictBindCallApply": false,
19
- "forceConsistentCasingInFileNames": false,
20
- "noFallthroughCasesInSwitch": false,
21
- "resolveJsonModule": true,
22
- "esModuleInterop": true
23
- },
24
- "exclude": ["node_modules"]
25
- }
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "module": "commonjs",
5
+ "declaration": true,
6
+ "removeComments": true,
7
+ "emitDecoratorMetadata": true,
8
+ "experimentalDecorators": true,
9
+ "allowSyntheticDefaultImports": true,
10
+ "target": "es2017",
11
+ "sourceMap": true,
12
+ "outDir": "./dist",
13
+ "baseUrl": ".",
14
+ "incremental": true,
15
+ "skipLibCheck": true,
16
+ "strictNullChecks": false,
17
+ "noImplicitAny": false,
18
+ "strictBindCallApply": false,
19
+ "forceConsistentCasingInFileNames": false,
20
+ "noFallthroughCasesInSwitch": false,
21
+ "resolveJsonModule": true,
22
+ "esModuleInterop": true
23
+ },
24
+ "exclude": ["node_modules"]
25
+ }