mirror of
https://github.com/retorquere/zotero-better-bibtex.git
synced 2022-05-23 09:36:29 +03:00
39 lines
841 B
JSON
39 lines
841 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"noUnusedLocals": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedParameters": false,
|
|
"importHelpers": true,
|
|
"target": "es2017",
|
|
"disableSizeLimit": true,
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": false,
|
|
"downlevelIteration": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./gen/typings",
|
|
"./typings"
|
|
],
|
|
"lib": [ "es2017", "dom", "dom.iterable", "webworker" ]
|
|
},
|
|
"include": [
|
|
"content/**/*",
|
|
"translators/**/*",
|
|
"setup/**/*",
|
|
"gen/**/*",
|
|
"typings/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"headless",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|