forked from angular-eslint/angular-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
43 lines (43 loc) · 1.56 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": false,
"declarationMap": false,
"esModuleInterop": true,
"module": "es2015",
"moduleResolution": "node",
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"sourceMap": false,
"strict": true,
"target": "es2017",
"baseUrl": ".",
"lib": ["es2017"],
"paths": {
"@angular-eslint/builder": ["packages/builder/dist/index"],
"@angular-eslint/builder/*": ["packages/builder/*"],
"@angular-eslint/eslint-plugin": ["packages/eslint-plugin/dist/index"],
"@angular-eslint/eslint-plugin/*": ["packages/eslint-plugin/*"],
"@angular-eslint/eslint-plugin-template": [
"packages/eslint-plugin-template/dist/index"
],
"@angular-eslint/eslint-plugin-template/*": [
"packages/eslint-plugin-template/*"
],
"@angular-eslint/integration-tests": ["packages/integration-tests"],
"@angular-eslint/integration-tests/*": ["packages/integration-tests/*"],
"@angular-eslint/schematics": ["packages/schematics/dist/index"],
"@angular-eslint/schematics/*": ["packages/schematics/*"],
"@angular-eslint/template-parser": [
"packages/template-parser/dist/index"
],
"@angular-eslint/template-parser/*": ["packages/template-parser/*"],
"@angular-eslint/utils": ["packages/utils/dist/index"],
"@angular-eslint/utils/*": ["packages/utils/*"]
}
}
}