Skip to content
This repository was archived by the owner on May 15, 2022. It is now read-only.

Commit 5a79e4d

Browse files
committed
Config comments
1 parent 2a5cf6f commit 5a79e4d

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.babelrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Configure Babel for Rollup
3+
*
4+
* @see https://babeljs.io/docs/en/options
5+
*/
16
module.exports = {
27
presets: ['@babel/env', '@babel/react'],
38
plugins: [

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Configure ESLint
33
*
4-
* https://eslint.org/docs/user-guide/configuring
4+
* @see https://eslint.org/docs/user-guide/configuring
55
*/
66
module.exports = {
77
parser: 'babel-eslint',

jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Configure Jest as the test runner for @testing-library
33
*
44
* @see https://jestjs.io/docs/en/configuration
5+
* @see https://testing-library.com/docs/react-testing-library/setup
56
*/
67
module.exports = {
78
setupFilesAfterEnv: [

rollup.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ import commonjs from 'rollup-plugin-commonjs';
44
import filesize from 'rollup-plugin-filesize';
55
import resolve from 'rollup-plugin-node-resolve';
66
import scss from 'rollup-plugin-scss';
7-
87
import pkg from './package.json';
98

109
const root = process.platform === 'win32' ? path.resolve('/') : '/';
1110

11+
/**
12+
* Rollup config for building the react-dat-gui library
13+
*
14+
* @see https://rollupjs.org/guide/en/#using-config-files
15+
*/
1216
export default {
1317
input: './src/index.js',
1418
output: [

0 commit comments

Comments
 (0)