-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
27 lines (25 loc) · 647 Bytes
/
Copy pathtsconfig.node.json
File metadata and controls
27 lines (25 loc) · 647 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
{
"include": ["src/**/*"],
"exclude": ["tests/**/*"],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "es2015",
"module": "commonjs",
"types": ["node", "jest"],
"lib": ["ES2016"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"removeComments": false,
"sourceMap": false,
"declaration": true,
"declarationMap": false,
"listEmittedFiles": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitThis": true
}
}