-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
47 lines (37 loc) · 1.03 KB
/
Copy pathtsconfig.build.json
File metadata and controls
47 lines (37 loc) · 1.03 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
// Project Structure
"rootDir": "./src",
"outDir": "lib",
// Output
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"removeComments": false,
"noEmitOnError": true,
// Runtime Target
"target": "ES2020",
"lib": ["ESNext", "DOM"],
// Modules
"module": "NodeNext",
"moduleResolution": "NodeNext",
// Type Checking
"strict": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
// Module Safety
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
// JavaScript Interop
"allowJs": false,
// Performance
"skipLibCheck": true,
// Global Types
"types": ["node", "mocha", "chai", "sinon", "xrm"]
},
// Source Files
"include": ["./src/**/*"],
// Excluded Files
"exclude": ["node_modules", "typesold", "./tests/"]
}