-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtsconfig.testing.json
More file actions
35 lines (33 loc) · 695 Bytes
/
tsconfig.testing.json
File metadata and controls
35 lines (33 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"compilerOptions": {
"noEmit": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// Stop checking declaration files in node_modules
"skipLibCheck": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": false,
"removeComments": false,
"stripInternal": true,
"resolveJsonModule": true,
"target": "es2015",
// this is more annoying in tests than it helps
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitThis": true,
"types": [
"node",
"mocha",
"chai",
"chai-as-promised",
"sinon",
"sinon-chai"
]
},
"include": [
"test/**/*.ts",
"src/**/*.test.ts"
]
}