From 8bbc538f6d71c909abe5a89d730bd9817e33a59e Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Sun, 17 Apr 2022 17:28:16 +0000 Subject: [PATCH] Restyled by jq --- tsconfig.json | 100 +++++++++++++++++++++++++++++++++----------------- 1 file changed, 66 insertions(+), 34 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d72cd4f..5a68328 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,34 +1,66 @@ -{ - "compilerOptions": { - "target": "es2022", - "module": "CommonJS", - "allowJs": true, - "skipLibCheck": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "noFallthroughCasesInSwitch": true, - "moduleResolution": "node", - "isolatedModules": true, - "outDir": "./build", - "baseUrl": "./src", - "typeRoots": ["/types/common", "./node_modules/@types"], - "paths": { - "@interface/*": ["Interfaces/*"], - "@root/*": ["*"], - "@config/*": ["config/*"], - "@events/*": ["events/*"], - "@logger": ["logger"], - "@database": ["database"], - "@schedules": ["schedules"], - "@handlers/*": ["handlers/*"], - "@helpers/*": ["helpers/*"], - "@locale": ["locale"], - "@plugins/*": ["plugins/*"], - "@schemas/*": ["database/schemas/*"] - } - }, - "include": ["./src"], - "exclude": ["./node_modules", "./test"] -} +{ + "compilerOptions": { + "target": "es2022", + "module": "CommonJS", + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "moduleResolution": "node", + "isolatedModules": true, + "outDir": "./build", + "baseUrl": "./src", + "typeRoots": [ + "/types/common", + "./node_modules/@types" + ], + "paths": { + "@interface/*": [ + "Interfaces/*" + ], + "@root/*": [ + "*" + ], + "@config/*": [ + "config/*" + ], + "@events/*": [ + "events/*" + ], + "@logger": [ + "logger" + ], + "@database": [ + "database" + ], + "@schedules": [ + "schedules" + ], + "@handlers/*": [ + "handlers/*" + ], + "@helpers/*": [ + "helpers/*" + ], + "@locale": [ + "locale" + ], + "@plugins/*": [ + "plugins/*" + ], + "@schemas/*": [ + "database/schemas/*" + ] + } + }, + "include": [ + "./src" + ], + "exclude": [ + "./node_modules", + "./test" + ] +}