diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-02-01 01:47:29 +0000 |
---|---|---|
committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-02-01 01:47:29 +0000 |
commit | ccb53d320d729b830e02e967c723cd49e8a09e79 (patch) | |
tree | 20ff9bf9dc14cb8f19da33baefc73176acbedffc | |
parent | 29c7bc6e323ac7537d474be5da1f182b4f90f119 (diff) | |
download | tanzanite-ccb53d320d729b830e02e967c723cd49e8a09e79.tar.gz tanzanite-ccb53d320d729b830e02e967c723cd49e8a09e79.tar.bz2 tanzanite-ccb53d320d729b830e02e967c723cd49e8a09e79.zip |
Automatically format code
-rw-r--r-- | tsconfig.json | 30 |
1 files changed, 7 insertions, 23 deletions
diff --git a/tsconfig.json b/tsconfig.json index 36b15bf..00cc0bc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,9 +4,7 @@ "target": "ESNext", "moduleResolution": "Node", "outDir": "dist", - "lib": [ - "esnext" - ], + "lib": ["esnext"], "sourceMap": true, "incremental": true, "experimentalDecorators": true, @@ -24,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"] +} |