-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tsdx monorepo structure / example parcel build
fix astok store array proxy not set error
- Loading branch information
kayw
committed
Jan 27, 2021
1 parent
774f2b3
commit 2451126
Showing
15 changed files
with
106 additions
and
103 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,39 @@ | ||
{ | ||
"name": "astok-project", | ||
"author": "kayw", | ||
"license": "MIT", | ||
"prettier": { | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "all" | ||
}, | ||
"scripts": { | ||
"lerna": "lerna", | ||
"start": "lerna run start --stream --parallel", | ||
"test": "lerna run test --", | ||
"lint": "lerna run lint -- --fix", | ||
"build": "lerna run build", | ||
"prepublish": "lerna run prepublish", | ||
"example": "npm run build && cd examples/todomvc && npm start", | ||
"cypress": "cypress run", | ||
"cypress:open": "cypress open", | ||
"changeset": "changeset", | ||
"@changesets/changelog-github": "^0.2.7", | ||
"@changesets/cli": "^2.10.3", | ||
"release": "changeset publish", | ||
"version:canary": "changeset version --snapshot canary", | ||
"release:canary": "changeset publish --tag canary" | ||
}, | ||
"devDependencies": { | ||
"lerna": "^3.20.2" | ||
"@testing-library/react": "^10.4.3", | ||
"@testing-library/react-hooks": "^3.3.0", | ||
"@types/react": "^17.0.0", | ||
"lerna": "^3.22.1", | ||
"react": "^17.0.0", | ||
"react-dom": "^17.0.0", | ||
"react-test-renderer": "^17.0.1", | ||
"tsdx": "^0.14.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "esnext", | ||
"lib": ["dom", "esnext"], | ||
"importHelpers": true, | ||
"declaration": true, | ||
"sourceMap": true, | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"moduleResolution": "node", | ||
"jsx": "react", | ||
"esModuleInterop": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": "./tsconfig.build.json", | ||
"include": ["packages", "types", "scripts", "example"], | ||
"compilerOptions": { | ||
"allowJs": false, | ||
"baseUrl": ".", | ||
"typeRoots": ["./node_modules/@types", "./types"], | ||
"paths": { | ||
"@astok/store": ["packages/astore/src"], | ||
"$test/*": ["test/*"] | ||
} | ||
} | ||
} |