Skip to content

Commit 8855940

Browse files
committed
fix: tsconfig.json
1 parent f5d518e commit 8855940

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

tsconfig.json

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2020",
4-
"module": "commonjs",
5-
"resolveJsonModule": true,
6-
"moduleResolution": "node",
7-
"outDir": "./dist",
8-
"declaration": true,
9-
"esModuleInterop": true,
10-
"strict": true,
11-
"skipLibCheck": true
3+
"extendedDiagnostics": true,
4+
"strict": true,
5+
"target": "ES6",
6+
"module": "CommonJS",
7+
"moduleResolution": "node",
8+
"esModuleInterop": true,
9+
"skipLibCheck": true,
10+
"declaration": true,
11+
"outDir": "dist",
12+
"rootDir": "src",
13+
"baseUrl": "src"
1214
},
13-
"include": [
14-
"src/**/*"
15-
],
16-
"exclude": [
17-
"node_modules",
18-
"dist"
19-
]
20-
}
15+
"include": ["src"],
16+
"exclude": []
17+
}

0 commit comments

Comments
 (0)