This repository was archived by the owner on Mar 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathangular.json
More file actions
45 lines (45 loc) · 1.31 KB
/
angular.json
File metadata and controls
45 lines (45 loc) · 1.31 KB
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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"hot-table": {
"root": "projects/hot-table",
"sourceRoot": "projects/hot-table/src",
"projectType": "library",
"prefix": "hot",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/hot-table/tsconfig.lib.json",
"project": "projects/hot-table/ng-package.json"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/hot-table/src/test.ts",
"tsConfig": "projects/hot-table/tsconfig.spec.json",
"karmaConfig": "projects/hot-table/karma.conf.js",
"styles": [
"node_modules/handsontable/dist/handsontable.full.css"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/hot-table/tsconfig.lib.json",
"projects/hot-table/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
}
}