View package.json
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
{ | |
"name": "root", | |
"private": true, | |
"workspaces": [ | |
"packages/*" | |
], | |
"scripts": { | |
"lint": "eslint './packages/**/*.{ts,tsx}'", | |
"lint:fix": "eslint './packages/**/*.{ts,tsx}' --fix", | |
"build": "yarn workspace ui-components tsc && yarn workspace ui-core tsc" |
View .eslintignore
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
packages/**/src/**/__tests__/** | |
packages/**/src/**/__snapshots__/** | |
packages/**/dist/ | |
node_modules |
View .eslintrc
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
{ | |
"parser": "@typescript-eslint/parser", | |
"parserOptions": { | |
"sourceType": "module", | |
"project": "./tsconfig.json" | |
}, | |
"plugins": [ | |
"react", | |
"prettier", | |
"@typescript-eslint" |
View tsconfig.json
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"rootDir": "packages", |
View tsconfig.json
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
{ | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"declaration": true, |
View tsconfig.json
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
{ | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"declaration": true, |
View tsconfig.json
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
{ | |
"compilerOptions": { | |
"target": "es5", | |
"module": "commonjs", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"rootDir": "packages", |
View lerna.json
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
{ | |
"packages": [ | |
"packages/*" | |
], | |
"version": "independent", | |
"npmClient": "yarn", | |
"useWorkspaces": true | |
} |
View package.json
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
{ | |
"name": "root", | |
"private": true, | |
"workspaces": [ | |
"packages/*" | |
], | |
"devDependencies": { | |
"lerna": "^3.18.4" | |
} | |
} |
NewerOlder