Skip to content

Commit

Permalink
feat: Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarodE committed Aug 26, 2022
0 parents commit 02cc6dc
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.DS_Store

.idea
.vscode

node_modules

**/dist

**/*.tgz
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# wg-monorepo-frontend

Initiative in JIRA: https://searchbroker.atlassian.net/browse/EMO-288

RFC: https://github.com/empathyco/architecture-decision-log/pull/108

## References

Playboard monorepo: https://searchbroker.atlassian.net/wiki/spaces/PLAYBOARD/pages/3914268778/Play+Playboard+Monorepo
12 changes: 12 additions & 0 deletions jest.config.base.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default {
testMatch: [
'**/*.spec.ts'
],
moduleFileExtensions: [
'ts',
'js'
],
transform: {
'^.+\\.ts$': 'ts-jest'
}
};
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "wg-monorepo-frontend",
"version": "0.0.0",
"workspaces": [
"libs/*",
"apps/*"
],
"scripts": {
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^18.7.9",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}
18 changes: 18 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"lib": [
"ESNext",
"DOM"
],
"esModuleInterop": true,
"strict": true,
"declaration": true,
"sourceMap": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true
}
}

0 comments on commit 02cc6dc

Please sign in to comment.