From 3d51456b07d2b3fbc8349a72eea11a26956edc01 Mon Sep 17 00:00:00 2001 From: Andre Rabello Date: Thu, 16 Nov 2023 19:11:36 +0000 Subject: [PATCH] chore: update tsconfigs --- examples/frameworks/solid-start/tsconfig.json | 8 +------- package.json | 2 +- stories/tsconfig.json | 1 - tsconfig.json | 1 - web/tsconfig.json | 1 - 5 files changed, 2 insertions(+), 11 deletions(-) diff --git a/examples/frameworks/solid-start/tsconfig.json b/examples/frameworks/solid-start/tsconfig.json index 4caf78e..f3e1feb 100644 --- a/examples/frameworks/solid-start/tsconfig.json +++ b/examples/frameworks/solid-start/tsconfig.json @@ -1,15 +1,9 @@ { - "extends": "../../tsconfig.json", - "include": ["."], + "extends": "../../../tsconfig.json", "compilerOptions": { - // "baseUrl": "./", - // "moduleResolution": "Node", "jsx": "preserve", "jsxImportSource": "solid-js", - // "allowSyntheticDefaultImports": true, - // "esModuleInterop": true, - "types": ["solid-start/env"] } } diff --git a/package.json b/package.json index 28370c0..5e22715 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "lint:commit": "commitlint --from origin/main --to HEAD --verbose", "lint:es": "eslint . --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0", "lint:prettier": "prettier . --ignore-path .gitignore --check", - "lint:ts": "tsc --noEmit", + "lint:ts": "concurrently 'tsc -p server' 'tsc -p stories' 'tsc -p web'", "format": "concurrently bun:format:*", "format:es": "bun run lint:es --fix", "format:prettier": "prettier . --ignore-path .gitignore --write", diff --git a/stories/tsconfig.json b/stories/tsconfig.json index e529ecf..f628782 100644 --- a/stories/tsconfig.json +++ b/stories/tsconfig.json @@ -1,6 +1,5 @@ { "extends": "../tsconfig.json", - "include": ["."], "compilerOptions": { "jsx": "react-jsx" } diff --git a/tsconfig.json b/tsconfig.json index 388804a..6f3c1bc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,4 @@ { - "include": ["web"], "compilerOptions": { "lib": ["ESNext", "DOM", "DOM.Iterable"], "module": "ESNext", diff --git a/web/tsconfig.json b/web/tsconfig.json index 72c5316..302006d 100644 --- a/web/tsconfig.json +++ b/web/tsconfig.json @@ -1,6 +1,5 @@ { "extends": "../tsconfig.json", - "include": ["."], "compilerOptions": { "jsx": "preserve", "jsxImportSource": "@builder.io/mitosis"