-
Notifications
You must be signed in to change notification settings - Fork 350
/
Copy pathtsconfig.base.json
40 lines (40 loc) · 1.61 KB
/
tsconfig.base.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
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"typeRoots": [
"node_modules/@types",
"node_modules/.pnpm/@types",
"node_modules/.pnpm/node_modules/@types",
"./types",
],
"paths": {
"app": ["./Extension/src/background/app/app-mv3.ts"],
"engine": ["./Extension/src/background/engine/engine-mv3.ts"],
"tswebextension": ["./Extension/src/background/tswebextension/tswebextension-mv3.ts"],
"scripting-service": ["./Extension/src/background/services/scripting/scripting-service-mv3.ts"],
"settings-service": ["./Extension/src/background/services/settings/settings-service-mv3.ts"],
"filters-service": ["./Extension/src/background/services/filters/filters-service-mv3.ts"],
"custom-filters-service": ["./Extension/src/background/services/custom-filters/custom-filters-service-mv3.ts"],
"rules-limits-service": ["./Extension/src/background/services/rules-limits/rules-limits-service-mv3.ts"]
}
}
}