mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-02 19:03:38 +02:00
* Prettify all JavaScript files * Make trailingComma all * Delete v2/.prettierignore * Remove v2 Prettier commands in package.json
12 lines
299 B
JavaScript
12 lines
299 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
rootDir: path.resolve(__dirname, '..'),
|
|
verbose: true,
|
|
testURL: 'http://localhost/',
|
|
testEnvironment: 'node',
|
|
moduleNameMapper: {
|
|
'^@lib/(.*)$': '<rootDir>/lib/$1',
|
|
},
|
|
testPathIgnorePatterns: ['/node_modules/', '__fixtures__'],
|
|
};
|