@alikuxac/tsconfig 1.0.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.
@@ -0,0 +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)
@@ -0,0 +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
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": ["github>alikuxac/renovate"]
4
+ }
@@ -0,0 +1,33 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+
7
+ jobs:
8
+ release:
9
+ name: Release
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: 'write'
13
+ pull-requests: 'write'
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v3
17
+
18
+ - name: Setup Volta
19
+ uses: volta-cli/action@v4
20
+
21
+ - name: Install dependencies
22
+ run: yarn install --immutable
23
+
24
+ - name: Create Release Pull Request or Publish to npm
25
+ uses: changesets/action@v1
26
+ with:
27
+ publish: yarn publish
28
+ version: yarn version
29
+ commit: 'chore: release'
30
+ title: 'chore: release'
31
+ env:
32
+ GITHUB_TOKEN: ${{ secrets.TOKEN }}
33
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -0,0 +1,9 @@
1
+ # Yarn
2
+
3
+ **/node_modules/
4
+ /.yarn/
5
+ /.pnp.*
6
+
7
+ # Artifacts
8
+
9
+ **/*.tsbuildinfo
@@ -0,0 +1,4 @@
1
+ {
2
+ "trailingComma": "all",
3
+ "proseWrap": "always"
4
+ }
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@alikuxac/tsconfig",
3
+ "version": "1.0.0",
4
+ "description": "Alikuxac tsconfig file",
5
+ "main": "./src/tsconfig.json",
6
+ "tsconfig": "./src/tsconfig.json",
7
+ "scripts": {
8
+ "lint": "prettier --check .",
9
+ "lint:fix": "prettier --write .",
10
+ "publish": "changeset publish",
11
+ "version": "changeset version"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git@github.com:alikuxac/tsconfig.git"
16
+ },
17
+ "keywords": [
18
+ "tsconfig",
19
+ "alikuxac"
20
+ ],
21
+ "author": "Alikuxac <admin@alikuxac.xyz>",
22
+ "license": "MIT",
23
+ "devDependencies": {
24
+ "prettier": "^2.8.3",
25
+ "typescript": "^4.9.5"
26
+ },
27
+ "engines": {
28
+ "node": ">=16.0.0"
29
+ }
30
+ }
@@ -0,0 +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
+ }