Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 3c60df6

Browse files
committed
more tsconfig
1 parent 3db1211 commit 3c60df6

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tsconfig.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,19 @@
33
"outDir": "dist", // where to put the compiled JS files
44
"target": "ES2020", // which level of JS support to target
55
"module": "CommonJS", // which system for the program AMD, UMD, System, CommonJS
6+
"moduleResolution": "node",
67
"esModuleInterop": true,
78
// Recommended: Compiler complains about expressions implicitly typed as 'any'
89
"noImplicitAny": true,
10+
"types": [
11+
"node", "mocha"
12+
]
913
},
1014
"include": ["src"], // which files to compile
11-
"exclude": ["node_modules"], // which files to skip
15+
"exclude": [
16+
"**/*.test.ts",
17+
"node_modules",
18+
"dist",
19+
"*.d.ts"
20+
]
1221
}

0 commit comments

Comments
 (0)