You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["es6", "dom", "es2017"],
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./build",
|
|
|
|
"removeComments": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
|
|
|
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types"],
|
|
|
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
|
|
|
}
|