Skip to content

Commit 02ca318

Browse files
Rename Files
Avoid ATM Machine. The folder path indicates its a config and what config it is.
1 parent 2b24729 commit 02ca318

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export { eslintConfig as baseLintConfig } from './config/linter/base.js';
55
export { eslintConfig as nextLintConfig } from './config/linter/next.js';
66

77
// Export baseline configuration for Next.js
8-
export { nextConfig } from './config/next/baseNextConfig.js';
8+
export { nextConfig } from './config/next/base.js';

test/next.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { assert } from 'chai';
22
import { it } from 'mocha';
3-
import { nextConfig } from '../config/next/baseNextConfig.js';
3+
import { nextConfig } from '../config/next/base.js';
44

55
describe('Validate Successful Import of Next.js configuration', () => {
66
it('Import is of object type', (done) => {

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./config/typescript/baseTsConfig.json",
2+
"extends": "./config/typescript/base.json",
33
"compilerOptions": {
44
"outDir": "./bin", /* Specify an output folder for all emitted files. */
55
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */

0 commit comments

Comments
 (0)