Skip to content

Commit 12b70a4

Browse files
committed
update config file path
1 parent bd81431 commit 12b70a4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

example/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
root: true,
3-
extends: '../.eslintrc.js',
3+
extends: '../config/.eslintrc.js',
44
parserOptions: {
55
project: true,
66
tsconfigRootDir: __dirname,

example/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.json",
2+
"extends": "../config/tsconfig.json",
33
"include": ["src", "index.js"],
44
"compilerOptions": {
55
"experimentalDecorators": true

package/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
root: true,
3-
extends: '../.eslintrc.js',
3+
extends: '../config/.eslintrc.js',
44
parserOptions: {
55
project: true,
66
tsconfigRootDir: __dirname,

package/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.json",
2+
"extends": "../config/tsconfig.json",
33
"include": ["src"],
44
"compilerOptions": {
55
"rootDir": "src"

package/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.json",
2+
"extends": "../config/tsconfig.json",
33
"include": ["src"],
44
"compilerOptions": {
55
"rootDir": "src",

0 commit comments

Comments
 (0)