-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 739 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 739 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
{
"compilerOptions": {
"noUnusedLocals": true,
"declaration": false,
"allowUnreachableCode": false,
"importHelpers": true,
"target": "es2017",
"disableSizeLimit": true,
"module": "ESNext",
"moduleResolution": "bundler",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": false,
"sourceMap": false,
"downlevelIteration": true,
"lib": [ "es2019", "dom", "ES2021.WeakRef" ],
"types": [ "node" ],
"typeRoots": [ "./node_modules/@types" ],
"skipDefaultLibCheck": true,
"skipLibCheck": true,
},
"include": [ "bootstrap.ts", "content/folder-import.ts", "content/globals.d.ts", "node_modules/zotero-types" ],
"exclude": [
"**/*.spec.ts"
]
}