-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.base.json
78 lines (78 loc) · 3.27 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"resolveJsonModule": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"target": "es5",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
"paths": {
"@plopdown/browser-action-ref": ["libs/browser-action-ref/src/index.ts"],
"@plopdown/browser-ref": ["libs/browser-ref/src/index.ts"],
"@plopdown/browser-ref/mock": ["libs/browser-ref/mock/index.ts"],
"@plopdown/devtools-ref": ["libs/devtools-ref/src/index.ts"],
"@plopdown/devtools-ref/mock": ["libs/devtools-ref/mock/index.ts"],
"@plopdown/ext-storage": ["libs/ext-storage/src/index.ts"],
"@plopdown/ext-storage/mock": ["libs/ext-storage/mock/index.ts"],
"@plopdown/icon": ["libs/icon/src/index.ts"],
"@plopdown/icon/mock": ["libs/icon/mock/index.ts"],
"@plopdown/logger": ["libs/logger/src/index.ts"],
"@plopdown/logger/mock": ["libs/logger/mock/index.ts"],
"@plopdown/lz-string": ["libs/lz-string/src/index.ts"],
"@plopdown/messages": ["libs/messages/src/index.ts"],
"@plopdown/messages/mock": ["libs/messages/mock/index.ts"],
"@plopdown/permissions": ["libs/permissions/src/index.ts"],
"@plopdown/permissions/mock": ["libs/permissions/mock/index.ts"],
"@plopdown/plopdown-cues": ["libs/plopdown-cues/src/index.ts"],
"@plopdown/plopdown-embed": ["libs/plopdown-embed/src/index.ts"],
"@plopdown/plopdown-embed/mock": ["libs/plopdown-embed/mock/index.ts"],
"@plopdown/plopdown-file": ["libs/plopdown-file/src/index.ts"],
"@plopdown/plopdown-file/mock": ["libs/plopdown-file/mock/index.ts"],
"@plopdown/plopdown-injector": ["libs/plopdown-injector/src/index.ts"],
"@plopdown/plopdown-injector/mock": [
"libs/plopdown-injector/mock/index.ts"
],
"@plopdown/pouchdb": ["libs/pouchdb/src/index.ts"],
"@plopdown/pouchdb/mock": ["libs/pouchdb/mock/index.ts"],
"@plopdown/remotes": ["libs/remotes/src/index.ts"],
"@plopdown/remotes/mock": ["libs/remotes/mock/index.ts"],
"@plopdown/tracks": ["libs/tracks/src/index.ts"],
"@plopdown/tracks/mock": ["libs/tracks/mock/index.ts"],
"@plopdown/video-refs": ["libs/video-refs/src/index.ts"],
"@plopdown/video-refs/mock": ["libs/video-refs/mock/index.ts"],
"@plopdown/web-extension": ["libs/web-extension/src/index.ts"],
"@plopdown/window-ref": ["libs/window-ref/src/index.ts"],
"@plopdown/window-ref/mock": ["libs/window-ref/mock/index.ts"]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"strictInjectionParameters": true,
"strictNullChecks": true,
"strictTemplates": true,
"noImplicitAny": true
},
"include": ["types/**/*.d.ts"],
"exclude": ["node_modules", "tmp"]
}