-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 800 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 800 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
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"checkJs": false,
"downlevelIteration": false,
"inlineSources": false,
"lib": ["es2015", "es2016", "es2017", "es5", "es6", "esnext", "dom"],
"module": "es6",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"outDir": ".",
"removeComments": true,
"sourceMap": false,
"strict": true,
"strictNullChecks": true,
"target": "es2017",
"typeRoots": ["@types", "node_modules/web-ext-types"]
},
"files": ["src/background.ts", "src/options.ts", "src/popup.ts"]
}