From c8e9cf963d99fd965c60c9cdcd5b35384d98322c Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Tue, 27 Apr 2021 15:44:04 +0200 Subject: [PATCH] Fix indent on tsconfig files --- tsconfig.json | 56 ++++++++++++++++++++++----------------------- tsconfig.test.json | 24 +++++++++---------- tsconfig.views.json | 32 +++++++++++++------------- 3 files changed, 56 insertions(+), 56 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 8d31752..99c5ead 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,33 +1,33 @@ { - "compilerOptions": { - "target": "ES6", - "module": "CommonJS", - "declaration": true, - "stripInternal": true, + "compilerOptions": { + "target": "ES6", + "module": "CommonJS", + "declaration": true, + "stripInternal": true, - "strict": true, - "allowSyntheticDefaultImports": true, + "strict": true, + "allowSyntheticDefaultImports": true, - "moduleResolution": "Node", - "esModuleInterop": true, - "baseUrl": "dist", - "rootDir": "src", - "sourceRoot": "src", - "inlineSourceMap": true, - "inlineSources": true, - "outDir": "dist", + "moduleResolution": "Node", + "esModuleInterop": true, + "baseUrl": "dist", + "rootDir": "src", + "sourceRoot": "src", + "inlineSourceMap": true, + "inlineSources": true, + "outDir": "dist", - "typeRoots": [ - "node_modules/@types", - "src/types" - ], - "lib": [ - "es2020" - ], - "resolveJsonModule": true, - "skipLibCheck": true - }, - "include": [ - "src/**/*" - ] + "typeRoots": [ + "node_modules/@types", + "src/types" + ], + "lib": [ + "es2020" + ], + "resolveJsonModule": true, + "skipLibCheck": true + }, + "include": [ + "src/**/*" + ] } diff --git a/tsconfig.test.json b/tsconfig.test.json index 897a6b4..42f3e86 100644 --- a/tsconfig.test.json +++ b/tsconfig.test.json @@ -1,14 +1,14 @@ { - "extends": "./tsconfig.json", - "compilerOptions": { - "typeRoots": [ - "node_modules/@types", - "src/types", - "test/types" + "extends": "./tsconfig.json", + "compilerOptions": { + "typeRoots": [ + "node_modules/@types", + "src/types", + "test/types" + ] + }, + "include": [ + "src/types/**/*", + "test/**/*" ] - }, - "include": [ - "src/types/**/*", - "test/**/*" - ] -} \ No newline at end of file +} diff --git a/tsconfig.views.json b/tsconfig.views.json index 84a7842..8be8e69 100644 --- a/tsconfig.views.json +++ b/tsconfig.views.json @@ -1,19 +1,19 @@ { - "extends": "@tsconfig/svelte/tsconfig.json", - "compilerOptions": { - "outDir": "public/js", - "rootDir": "./build", - "target": "ES6", - "strict": true, - "lib": [ - "es2020", - "DOM" - ], - "typeRoots": [ - "./node_modules/@types" + "extends": "@tsconfig/svelte/tsconfig.json", + "compilerOptions": { + "outDir": "public/js", + "rootDir": "./build", + "target": "ES6", + "strict": true, + "lib": [ + "es2020", + "DOM" + ], + "typeRoots": [ + "./node_modules/@types" + ] + }, + "include": [ + "assets/ts/**/*" ] - }, - "include": [ - "assets/ts/**/*" - ] }