forked from userscripters/tag-creation-request-completer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 827 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 827 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
{
"compilerOptions": {
"strict": true,
"removeComments": true,
"allowJs": true,
"checkJs": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "es2019",
"module": "CommonJS",
"moduleResolution": "node",
"noUnusedParameters": true,
"noUnusedLocals": true,
"noErrorTruncation": true,
"skipLibCheck": true,
"downlevelIteration": true,
"outDir": "dist",
"types": [
"@userscripters/global-types",
"@userscripters/storage",
"@userscripters/stackexchange-global-types",
"@userscripters/stackexchange-api-types",
"jquery",
"greasemonkey",
"tampermonkey"
]
},
"exclude": ["dist"],
"include": ["src"]
}