Skip to content

Commit 4a46f46

Browse files
committed
fix
1 parent 81dac7b commit 4a46f46

File tree

2 files changed

+14
-29
lines changed

2 files changed

+14
-29
lines changed
Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
{
22
"compilerOptions": {
3-
"target": "ESNext",
4-
"module": "ESNext",
5-
"moduleResolution": "node",
6-
"esModuleInterop": true,
7-
"skipLibCheck": true,
3+
"target": "es6",
4+
"module": "commonjs",
5+
"outDir": "./build",
86
"strict": true,
9-
"jsx": "react-jsx",
10-
"types": ["jest", "@testing-library/jest-dom"]
7+
"esModuleInterop": true,
8+
"skipLibCheck": true
119
},
12-
"include": [
13-
"**/*.test.tsx",
14-
"**/*.test.ts",
15-
"./jest.config.ts",
16-
"tests",
17-
"src"
18-
]
10+
"include": ["src/**/*"],
11+
"exclude": ["node_modules", "tests"]
1912
}
Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
{
22
"compilerOptions": {
3-
"target": "ESNext",
4-
"module": "ESNext",
5-
"moduleResolution": "node",
6-
"esModuleInterop": true,
7-
"skipLibCheck": true,
3+
"target": "es6",
4+
"module": "commonjs",
5+
"outDir": "./build",
86
"strict": true,
9-
"jsx": "react-jsx",
10-
"types": ["jest", "@testing-library/jest-dom"]
7+
"esModuleInterop": true,
8+
"skipLibCheck": true
119
},
12-
"include": [
13-
"**/*.test.tsx",
14-
"**/*.test.ts",
15-
"./jest.config.ts",
16-
"tests",
17-
"src",
18-
"__tests__"
19-
]
10+
"include": ["src/**/*"],
11+
"exclude": ["node_modules", "tests"]
2012
}

0 commit comments

Comments
 (0)