Skip to content

Commit

Permalink
use new baseconfig in tsconfig (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
4leite authored Jul 2, 2024
1 parent a49cf41 commit 5f39dc2
Show file tree
Hide file tree
Showing 15 changed files with 3 additions and 17 deletions.
3 changes: 1 addition & 2 deletions packages/create-oberon-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
"rootDir": "./src"
},
"include": ["src"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.spec.tsx"]
Expand Down
1 change: 0 additions & 1 deletion packages/oberoncms/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src"],
Expand Down
1 change: 0 additions & 1 deletion packages/oberoncms/sqlite/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src"],
Expand Down
1 change: 0 additions & 1 deletion packages/plugins/development/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src"],
Expand Down
1 change: 0 additions & 1 deletion packages/plugins/flydrive/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx",
"plugins": [
{
Expand Down
1 change: 0 additions & 1 deletion packages/plugins/pgsql/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src"],
Expand Down
1 change: 0 additions & 1 deletion packages/plugins/turso/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src"],
Expand Down
1 change: 0 additions & 1 deletion packages/plugins/uploadthing/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx",
"plugins": [
{
Expand Down
1 change: 0 additions & 1 deletion packages/plugins/vercel-postgres/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src", "scripts"],
Expand Down
2 changes: 1 addition & 1 deletion packages/tohuhono/dev/base.ts.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"outDir": "./dist",
"outDir": "${configDir}/dist",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "preserve",
Expand Down
3 changes: 1 addition & 2 deletions packages/tohuhono/dev/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"extends": "./base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
"rootDir": "./src"
},
"include": ["src", "eslint"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.spec.tsx"]
Expand Down
1 change: 0 additions & 1 deletion packages/tohuhono/puck-blocks/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx",
"plugins": [
{
Expand Down
1 change: 0 additions & 1 deletion packages/tohuhono/puck-rich-text/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx",
"plugins": [
{
Expand Down
1 change: 0 additions & 1 deletion packages/tohuhono/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src"],
Expand Down
1 change: 0 additions & 1 deletion packages/tohuhono/utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "@tohuhono/dev/base.ts.config.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": ["src"],
Expand Down

0 comments on commit 5f39dc2

Please sign in to comment.