Skip to content

Commit cc6ca3e

Browse files
WesSouzaarturbien
authored andcommitted
chore: install and configure TypeScript
This commit: - Adds .editorconfig file - Installs TypeScript and necessary dependencies - Configures TypeScript tsconfig.json - Configures Rollup to use esbuild and export .d.ts - Converts entry files to TypeScript - Configures Storybook to generate docs based on types - Configures TypeScript on ESLint - Configures Jest and ts-jest for TypeScript - Fixes no-use-before-define problems on stories - Ignores @typescript-eslint/no-unused-vars on mapFromWindowsTheme - Fixes test failure on CSS check
1 parent a42fb6c commit cc6ca3e

28 files changed

+748
-121
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = yes
9+
insert_final_newline = yes

.eslintrc.js

+40-6
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,64 @@
11
module.exports = {
2-
extends: ['airbnb', 'plugin:prettier/recommended'],
3-
parser: '@babel/eslint-parser',
2+
extends: [
3+
'plugin:@typescript-eslint/recommended',
4+
'airbnb',
5+
'plugin:prettier/recommended'
6+
],
7+
parser: '@typescript-eslint/parser',
48
plugins: ['react', 'prettier'],
59
env: {
610
browser: true,
711
es6: true,
812
jest: true
913
},
1014
rules: {
11-
'import/no-unresolved': ['error', { ignore: ['react95'] }],
15+
'@typescript-eslint/explicit-module-boundary-types': 'off',
16+
'@typescript-eslint/no-empty-function': 'off',
17+
'@typescript-eslint/no-empty-interface': 'off',
18+
'@typescript-eslint/no-use-before-define': 'off',
19+
'@typescript-eslint/no-unused-vars': [
20+
'error',
21+
{
22+
argsIgnorePattern: '^_\\d*$'
23+
}
24+
],
25+
'import/extensions': ['error', { js: 'never', ts: 'never', tsx: 'never' }],
26+
'import/no-unresolved': [
27+
'error',
28+
// TODO: Remove ../../test/utils when TypeScript migration is complete
29+
{ ignore: ['react95', '../../test/utils'] }
30+
],
1231
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
32+
'import/prefer-default-export': 'off',
1333
'jsx-a11y/label-has-associated-control': ['error', { assert: 'either' }],
1434
'jsx-a11y/label-has-for': 'off',
1535
'prettier/prettier': 'error',
1636
'react/forbid-prop-types': 'off',
17-
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }],
37+
'react/jsx-filename-extension': [
38+
'warn',
39+
{ extensions: ['.js', '.jsx', '.tsx'] }
40+
],
1841
'react/jsx-props-no-spreading': 'off',
1942
'react/no-array-index-key': 'off',
43+
'react/prop-types': 'off',
44+
'react/react-in-jsx-scope': 'off',
45+
'react/require-default-props': 'off',
2046
'react/static-property-placement': ['error', 'static public field']
2147
},
2248
overrides: [
2349
{
24-
files: ['*.spec.@(js|jsx)', '*.stories.@(js|jsx)'],
50+
files: ['*.spec.@(js|jsx|ts|tsx)', '*.stories.@(js|jsx|ts|tsx)'],
2551
rules: {
2652
'no-console': 'off'
2753
}
2854
}
29-
]
55+
],
56+
settings: {
57+
'import/parsers': {
58+
'@typescript-eslint/parser': ['.ts', '.tsx']
59+
},
60+
'import/resolver': {
61+
typescript: {}
62+
}
63+
}
3064
};

.storybook/main.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
/** @type import('@storybook/react/types').StorybookConfig */
12
module.exports = {
2-
stories: ['../src/**/*.stories.@(js|mdx)'],
3+
stories: ['../src/**/*.stories.@(js|jsx|tsx|mdx)'],
34
addons: [
45
{
56
name: '@storybook/addon-docs',
@@ -14,5 +15,15 @@ module.exports = {
1415
],
1516
features: {
1617
postcss: false
18+
},
19+
typescript: {
20+
check: false,
21+
checkOptions: {},
22+
reactDocgen: 'react-docgen-typescript',
23+
reactDocgenTypescriptOptions: {
24+
shouldExtractLiteralValuesFromEnum: true,
25+
propFilter: prop =>
26+
prop.parent ? !/node_modules/.test(prop.parent.fileName) : true
27+
}
1728
}
1829
};

jest.config.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
module.exports = {
2-
setupFilesAfterEnv: ['<rootDir>/test/setup-test'],
2+
globals: {
3+
extensionsToTreatAsEsm: ['.js'],
4+
'ts-jest': {
5+
diagnostics: false,
6+
isolatedModules: true,
7+
useESM: true
8+
}
9+
},
10+
preset: 'ts-jest/presets/js-with-ts-esm',
11+
setupFilesAfterEnv: ['<rootDir>/test/setup-test.ts'],
312
testEnvironment: 'jsdom'
413
};

package.json

+18-5
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
"license": "MIT",
2424
"repository": "[email protected]:arturbien/React95.git",
2525
"homepage": "https://react95.io",
26-
"main": "./dist/cjs/index.js",
27-
"module": "./dist/esm/index.js",
26+
"main": "./dist/index.js",
27+
"module": "./dist/index.mjs",
28+
"types": "./dist/index.d.ts",
2829
"files": [
2930
"/dist"
3031
],
@@ -41,7 +42,7 @@
4142
"test:ci": "jest ./src --maxWorkers=2",
4243
"test:watch": "jest ./src --watch",
4344
"test:coverage": "jest ./src --coverage",
44-
"lint": "eslint src --ext .js",
45+
"lint": "eslint --ext .js,.ts,.tsx src",
4546
"lint:fix": "yarn run lint --fix",
4647
"semantic-release": "semantic-release",
4748
"install:codesandbox": "yarn --ignore-engines",
@@ -66,14 +67,21 @@
6667
"@testing-library/jest-dom": "^5.16.4",
6768
"@testing-library/react": "^12.1.5",
6869
"@types/jest": "^28.1.6",
70+
"@types/react": "^17.0.39",
71+
"@types/react-dom": "^17.0.11",
72+
"@types/styled-components": "^5.1.25",
73+
"@typescript-eslint/eslint-plugin": "^5.30.7",
74+
"@typescript-eslint/parser": "^5.30.7",
6975
"babel-loader": "^8.2.5",
7076
"babel-plugin-styled-components": "^2.0.7",
7177
"commitizen": "^4.2.5",
7278
"cross-env": "^7.0.3",
7379
"cz-conventional-changelog": "^3.3.0",
80+
"esbuild": "^0.14.49",
7481
"eslint": "^8.20.0",
7582
"eslint-config-airbnb": "^19.0.4",
7683
"eslint-config-prettier": "^8.5.0",
84+
"eslint-import-resolver-typescript": "^3.3.0",
7785
"eslint-plugin-import": "^2.26.0",
7886
"eslint-plugin-jsx-a11y": "^6.6.0",
7987
"eslint-plugin-prettier": "^4.2.1",
@@ -87,17 +95,22 @@
8795
"prettier": "^2.7.1",
8896
"prop-types": "^15.8.1",
8997
"react": "^17.0.2",
98+
"react-docgen-typescript": "^2.2.2",
9099
"react-dom": "^17.0.2",
91100
"rimraf": "^3.0.2",
92101
"rollup": "^2.77.0",
93102
"rollup-plugin-babel": "^4.4.0",
94103
"rollup-plugin-commonjs": "^9.3.4",
95104
"rollup-plugin-copy": "^3.4.0",
105+
"rollup-plugin-dts": "^4.2.2",
106+
"rollup-plugin-esbuild": "^4.9.1",
96107
"rollup-plugin-node-resolve": "^4.2.4",
97108
"rollup-plugin-replace": "^2.2.0",
98109
"semantic-release": "^19.0.3",
99110
"storybook-addon-styled-component-theme": "^2.0.0",
100-
"styled-components": "^5.3.5"
111+
"styled-components": "^5.3.5",
112+
"ts-jest": "^28.0.7",
113+
"typescript": "^4.7.4"
101114
},
102115
"dependencies": {},
103116
"husky": {
@@ -117,4 +130,4 @@
117130
"path": "./node_modules/cz-conventional-changelog"
118131
}
119132
}
120-
}
133+
}

rollup.config.js

+44-35
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,45 @@
1-
import babel from 'rollup-plugin-babel';
2-
import commonjs from 'rollup-plugin-commonjs';
3-
import resolve from 'rollup-plugin-node-resolve';
4-
import replace from 'rollup-plugin-replace';
1+
import esbuild from 'rollup-plugin-esbuild';
52
import copy from 'rollup-plugin-copy';
3+
import dts from 'rollup-plugin-dts';
4+
import replace from 'rollup-plugin-replace';
65
import packageJson from './package.json';
76

87
const NODE_ENV = process.env.NODE_ENV || 'development';
98

10-
export default [
9+
const bundle = config => [
10+
{
11+
...config,
12+
external: id => !/^[./]/.test(id),
13+
plugins: [
14+
...config.plugins,
15+
replace({
16+
'process.env.NODE_ENV': JSON.stringify(NODE_ENV)
17+
}),
18+
esbuild({ loaders: { '.js': 'jsx' } })
19+
]
20+
},
1121
{
12-
input: './src/index.js',
22+
...config,
23+
output: config.output.dir
24+
? config.output
25+
: {
26+
file: packageJson.types,
27+
format: 'es'
28+
},
29+
external: id => !/^[./]/.test(id),
30+
plugins: [
31+
...config.plugins,
32+
replace({
33+
'process.env.NODE_ENV': JSON.stringify(NODE_ENV)
34+
}),
35+
dts()
36+
]
37+
}
38+
];
39+
40+
export default [
41+
...bundle({
42+
input: './src/index.ts',
1343
output: [
1444
{
1545
file: packageJson.main,
@@ -18,25 +48,14 @@ export default [
1848
},
1949
{
2050
file: packageJson.module,
21-
format: 'esm',
51+
format: 'es',
2252
sourcemap: true
2353
}
2454
],
25-
plugins: [
26-
replace({
27-
'process.env.NODE_ENV': JSON.stringify(NODE_ENV)
28-
}),
29-
babel({
30-
exclude: 'node_modules/**',
31-
runtimeHelpers: true
32-
}),
33-
resolve(),
34-
commonjs()
35-
],
36-
external: id => /^react|react-dom|styled-components/.test(id)
37-
},
38-
{
39-
input: './src/common/themes/index.js',
55+
plugins: []
56+
}),
57+
...bundle({
58+
input: './src/common/themes/index.ts',
4059
output: {
4160
dir: 'dist/themes',
4261
exports: 'default',
@@ -49,17 +68,7 @@ export default [
4968
{ src: './src/assets/fonts/dist/*', dest: './dist/fonts' },
5069
{ src: './src/assets/images/*', dest: './dist/images' }
5170
]
52-
}),
53-
replace({
54-
'process.env.NODE_ENV': JSON.stringify(NODE_ENV)
55-
}),
56-
babel({
57-
exclude: 'node_modules/**',
58-
runtimeHelpers: true
59-
}),
60-
resolve(),
61-
commonjs()
62-
],
63-
external: id => /^react|react-dom|styled-components/.test(id)
64-
}
71+
})
72+
]
73+
})
6574
];

src/AppBar/AppBar.stories.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ import {
1111
} from 'react95';
1212
import logoIMG from '../assets/images/logo.png';
1313

14+
const Wrapper = styled.div`
15+
padding: 5rem;
16+
background: ${({ theme }) => theme.desktopBackground};
17+
`;
18+
1419
export default {
1520
title: 'AppBar',
1621
component: AppBar,
1722
decorators: [story => <Wrapper>{story()}</Wrapper>]
1823
};
19-
const Wrapper = styled.div`
20-
padding: 5rem;
21-
background: ${({ theme }) => theme.desktopBackground};
22-
`;
2324

2425
export function Default() {
2526
const [open, setOpen] = React.useState(false);

src/Bar/Bar.stories.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ import styled from 'styled-components';
33

44
import { Bar, AppBar, Toolbar, Button } from 'react95';
55

6+
const Wrapper = styled.div`
7+
padding: 5rem;
8+
background: ${({ theme }) => theme.desktopBackground};
9+
`;
10+
611
export default {
712
title: 'Bar',
813
component: Bar,
914
decorators: [story => <Wrapper>{story()}</Wrapper>]
1015
};
11-
const Wrapper = styled.div`
12-
padding: 5rem;
13-
background: ${({ theme }) => theme.desktopBackground};
14-
`;
1516

1617
export function Default() {
1718
return (

src/Desktop/Desktop.stories.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ import styled from 'styled-components';
33

44
import { Desktop } from 'react95';
55

6+
const Wrapper = styled.div`
7+
padding: 5rem;
8+
background: ${({ theme }) => theme.desktopBackground};
9+
`;
10+
611
export default {
712
title: 'Desktop',
813
component: Desktop,
914
decorators: [story => <Wrapper>{story()}</Wrapper>]
1015
};
11-
const Wrapper = styled.div`
12-
padding: 5rem;
13-
background: ${({ theme }) => theme.desktopBackground};
14-
`;
1516

1617
export function Default() {
1718
return <Desktop backgroundStyles={{ background: 'blue' }} />;

src/Divider/Divider.stories.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ import styled from 'styled-components';
33

44
import { Divider, List, ListItem } from 'react95';
55

6+
const Wrapper = styled.div`
7+
padding: 5rem;
8+
background: ${({ theme }) => theme.desktopBackground};
9+
`;
10+
611
export default {
712
title: 'Divider',
813
component: Divider,
914
decorators: [story => <Wrapper>{story()}</Wrapper>]
1015
};
11-
const Wrapper = styled.div`
12-
padding: 5rem;
13-
background: ${({ theme }) => theme.desktopBackground};
14-
`;
1516

1617
export function Default() {
1718
return (

0 commit comments

Comments
 (0)