-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 747 Bytes
/
Copy pathtsconfig.json
File metadata and controls
29 lines (29 loc) · 747 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
{
"compileOnSave": false,
"exclude": ["dist", "node_modules"],
"include": ["./src"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "dist/declarations",
"declarationMap": false,
"inlineSourceMap": false,
"isolatedDeclarations": true,
"lib": ["esnext", "dom"],
"listEmittedFiles": false,
"module": "nodenext",
"moduleResolution": "nodenext",
"noUnusedLocals": true,
"noUnusedParameters": false,
"outDir": "dist",
"pretty": true,
"resolveJsonModule": true,
"rootDir": "src",
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "esnext",
"traceResolution": false,
"types": ["node"]
}
}