-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 793 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 793 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
{
"compilerOptions": {
"target": "es3",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "es2017"],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"typedocOptions": {
"name": "Waitasecond",
"entryPoints": ["./src/main.ts"],
"exclude": [],
"excludePrivate": true,
"includeVersion": true,
"hideGenerator": true,
"out": "./docs",
"gitRemote": "https://github.com/hejny/waitasecond"
},
"include": ["src"],
"exclude": ["scripts", "samples", "test"]
}