diff --git a/apps/cms/tsconfig.json b/apps/cms/tsconfig.json index ff807501..da57ec24 100644 --- a/apps/cms/tsconfig.json +++ b/apps/cms/tsconfig.json @@ -9,12 +9,12 @@ "skipLibCheck": true, "outDir": "./dist", "rootDir": "./src", - "jsx": "react-jsx" + "jsx": "react-jsx", }, "include": ["src"], "exclude": ["node_modules", "dist", "build"], "ts-node": { "transpileOnly": true, - "swc": true - } + "swc": true, + }, } diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 0ed562fd..b761ef8e 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -5,9 +5,9 @@ "outDir": "dist", "plugins": [ { - "name": "next" - } - ] + "name": "next", + }, + ], }, - "include": ["src", "next-env.d.ts", ".next/types/**/*.ts"] + "include": ["src", "next-env.d.ts", ".next/types/**/*.ts"], } diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index 1b278056..b9dcd05d 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -1,8 +1,8 @@ { "extends": "@tietokilta/config-typescript/react-library.json", "compilerOptions": { - "lib": ["dom", "ES2015"] + "lib": ["dom", "ES2015"], }, "include": ["."], - "exclude": ["dist", "build", "node_modules"] + "exclude": ["dist", "build", "node_modules"], }