-
Notifications
You must be signed in to change notification settings - Fork 245
/
tsconfig.json
41 lines (41 loc) · 1.23 KB
/
tsconfig.json
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
30
31
32
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"target": "es2021",
"moduleResolution": "node",
"alwaysStrict": true,
"allowJs": true,
"checkJs": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"declaration": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"maxNodeModuleJsDepth": 0,
"typeRoots": [
"./node_modules/@types",
"./types"
]
},
"include": [
"packages/privacy-grade/src/classes/trackers.js",
"node_modules/@duckduckgo/privacy-dashboard/schema/__generated__/schema.types.ts",
"shared/js/background/**/*.js",
"shared/js/devtools/**/*.js",
"shared/js/newtab/**/*.js",
"shared/js/shared-utils/**/*.js",
"integration-test/helpers/requests.js",
"integration-test/background/click-to-load-facebook.js",
"unit-test/background/newtab-tracker-stats.js",
"unit-test/background/classes/tracker-stats.js"
],
"exclude": [
"shared/js/background/background.js",
"shared/js/background/csp-blocking.js",
"shared/js/background/events.js",
"shared/js/background/onboarding.js",
"shared/js/devtools/list-editor.js",
"shared/js/devtools/panel.js",
]
}