Blame view

angular-cli.json 1.44 KB
c680f5b4   Administrator   first commit
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
  {
      "project": {
          "version": "1.0.0-beta.26",
          "name": "covalent-quickstart"
      },
      "apps": [{
          "root": "src",
          "outDir": "dist",
          "assets": [
              "assets",
              "data",
              "favicon.ico"
          ],
          "index": "index.html",
          "main": "main.ts",
          "test": "test.ts",
          "tsconfig": "tsconfig.json",
          "prefix": "app",
          "mobile": false,
          "styles": [
              "styles.scss",
              "theme.scss",
              "../node_modules/@covalent/core/common/platform.css",
              "../node_modules/@swimlane/ngx-charts/release/ngx-charts.css",
              "../node_modules/ag-grid/dist/styles/ag-grid.css",
8ae52ec0   Administrator   add animation fil
26
              "../node_modules/ag-grid/dist/styles/theme-blue.css"
c680f5b4   Administrator   first commit
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
          ],
          "scripts": [
              "../node_modules/hammerjs/hammer.min.js",
              "../node_modules/showdown/dist/showdown.js"
          ],
          "environments": {
              "source": "environments/environment.ts",
              "dev": "environments/environment.ts",
              "prod": "environments/environment.prod.ts"
          }
      }],
      "addons": [],
      "packages": [],
      "e2e": {
          "protractor": {
              "config": "./protractor.conf.js"
          }
      },
      "test": {
          "karma": {
              "config": "./karma.conf.js"
          }
      },
      "defaults": {
          "styleExt": "scss",
          "prefixInterfaces": false,
          "lazyRoutePrefix": "+"
      }
  }