Skip to content

Commit

Permalink
yarn prettier --write .
Browse files Browse the repository at this point in the history
  • Loading branch information
koistya committed Feb 4, 2024
1 parent 5e2fb3b commit 4e777fd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"outDir": "../.cache/typescript-app",
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"noEmit": true
},
"include": ["**/*.ts", "**/*.d.ts", "**/*.tsx", "**/*.json"],
"exclude": ["dist/**/*", "vite.config.ts"],
"references": [{ "path": "./tsconfig.node.json" }],
"references": [{ "path": "./tsconfig.node.json" }]
}
4 changes: 2 additions & 2 deletions db/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"lib": ["ESNext"],
"noEmit": true,
"outDir": "../.cache/ts-db",
"types": ["node"],
"types": ["node"]
},
"include": ["**/*.ts", "**/*.cjs", "**/*.js", "**/*.json"],
"exclude": ["dist/**/*"],
"exclude": ["dist/**/*"]
}
4 changes: 2 additions & 2 deletions server/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"lib": ["ESNext"],
"outDir": "../.cache/ts-server",
"types": ["vite/client"],
"noEmit": true,
"noEmit": true
},
"include": ["**/*.ts", "**/*.cjs", "**/*.js", "**/*.json", "../db/types"],
"exclude": ["dist/**/*"],
"exclude": ["dist/**/*"]
}
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"references": [
{ "path": "./app" },
{ "path": "./db" },
{ "path": "./server" },
],
{ "path": "./server" }
]
}

0 comments on commit 4e777fd

Please sign in to comment.