diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-01-01 22:04:46 +0000 |
---|---|---|
committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-01-01 22:04:46 +0000 |
commit | 10331e32e00116a4a82b4f86f668aaffa5ca903d (patch) | |
tree | 1fa27c5bb2d74305981fecc4bb496d16165bd916 | |
parent | 34fa8e02539b300312103a27d965a3b2de557ae9 (diff) | |
download | tanzanite-10331e32e00116a4a82b4f86f668aaffa5ca903d.tar.gz tanzanite-10331e32e00116a4a82b4f86f668aaffa5ca903d.tar.bz2 tanzanite-10331e32e00116a4a82b4f86f668aaffa5ca903d.zip |
Automatically format code
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | tsconfig.json | 34 |
2 files changed, 8 insertions, 28 deletions
diff --git a/package.json b/package.json index 9c9ad33..0bc6679 100644 --- a/package.json +++ b/package.json @@ -106,4 +106,4 @@ "eslint-plugin-deprecation": "^1.3.2" }, "packageManager": "yarn@3.1.1" -}
\ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index 0035c38..25615af 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,13 +4,7 @@ "target": "ESNext", "moduleResolution": "Node", "outDir": "dist", - "lib": [ - "esnext", - "esnext.array", - "esnext.asyncIterable", - "esnext.intl", - "esnext.symbol" - ], + "lib": ["esnext", "esnext.array", "esnext.asyncIterable", "esnext.intl", "esnext.symbol"], "sourceMap": true, "incremental": true, "experimentalDecorators": true, @@ -28,25 +22,11 @@ "preserveValueImports": true, "removeComments": true, "paths": { - "#lib": [ - "./src/lib/index.js" - ], - "#args": [ - "./src/arguments/index.ts" - ], - "#commands": [ - "./src/commands/index.ts" - ] + "#lib": ["./src/lib/index.js"], + "#args": ["./src/arguments/index.ts"], + "#commands": ["./src/commands/index.ts"] } }, - "include": [ - "src/**/*.ts", - "src/**/*d.ts", - "lib/**/*.ts", - "ecosystem.config.cjs" - ], - "exclude": [ - "dist", - "node_modules" - ] -}
\ No newline at end of file + "include": ["src/**/*.ts", "src/**/*d.ts", "lib/**/*.ts", "ecosystem.config.cjs"], + "exclude": ["dist", "node_modules"] +} |