Skip to content

Commit 0c842fd

Browse files
Çağatay ÇiviciÇağatay Çivici
Çağatay Çivici
authored and
Çağatay Çivici
committed
1 parent abb9bfa commit 0c842fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+12125
-13199
lines changed

.angular-cli.json

-69
This file was deleted.

angular.json

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"primeng": {
7+
"root": "",
8+
"sourceRoot": "src",
9+
"projectType": "application",
10+
"prefix": "app",
11+
"schematics": {},
12+
"architect": {
13+
"build": {
14+
"builder": "@angular-devkit/build-angular:browser",
15+
"options": {
16+
"outputPath": "dist/primeng",
17+
"index": "src/index.html",
18+
"main": "src/main.ts",
19+
"polyfills": "src/polyfills.ts",
20+
"tsConfig": "src/tsconfig.app.json",
21+
"assets": [
22+
"src/favicon.png",
23+
"src/assets",
24+
"src/upload.php"
25+
],
26+
"styles": [
27+
"node_modules/fullcalendar/dist/fullcalendar.min.css",
28+
"node_modules/quill/dist/quill.snow.css",
29+
"node_modules/font-awesome/css/font-awesome.min.css",
30+
"src/styles.css"
31+
],
32+
"scripts": [
33+
"./node_modules/jquery/dist/jquery.slim.js",
34+
"./node_modules/moment/moment.js",
35+
"./node_modules/chart.js/dist/Chart.js",
36+
"./node_modules/fullcalendar/dist/fullcalendar.js",
37+
"./node_modules/quill/dist/quill.js",
38+
"./node_modules/prismjs/prism.js",
39+
"./node_modules/prismjs/components/prism-typescript.js"
40+
]
41+
},
42+
"configurations": {
43+
"production": {
44+
"fileReplacements": [
45+
{
46+
"replace": "src/environments/environment.ts",
47+
"with": "src/environments/environment.prod.ts"
48+
}
49+
],
50+
"optimization": true,
51+
"outputHashing": "all",
52+
"sourceMap": false,
53+
"extractCss": true,
54+
"namedChunks": false,
55+
"aot": true,
56+
"extractLicenses": true,
57+
"vendorChunk": false,
58+
"buildOptimizer": true
59+
}
60+
}
61+
},
62+
"serve": {
63+
"builder": "@angular-devkit/build-angular:dev-server",
64+
"options": {
65+
"browserTarget": "primeng:build"
66+
},
67+
"configurations": {
68+
"production": {
69+
"browserTarget": "primeng:build:production"
70+
}
71+
}
72+
},
73+
"extract-i18n": {
74+
"builder": "@angular-devkit/build-angular:extract-i18n",
75+
"options": {
76+
"browserTarget": "primeng:build"
77+
}
78+
},
79+
"test": {
80+
"builder": "@angular-devkit/build-angular:karma",
81+
"options": {
82+
"main": "src/test.ts",
83+
"polyfills": "src/polyfills.ts",
84+
"tsConfig": "src/tsconfig.spec.json",
85+
"karmaConfig": "src/karma.conf.js",
86+
"styles": [
87+
"src/styles.css"
88+
],
89+
"scripts": [],
90+
"assets": [
91+
"src/favicon.png",
92+
"src/assets",
93+
"src/upload.php"
94+
]
95+
}
96+
},
97+
"lint": {
98+
"builder": "@angular-devkit/build-angular:tslint",
99+
"options": {
100+
"tsConfig": [
101+
"src/tsconfig.app.json",
102+
"src/tsconfig.spec.json"
103+
],
104+
"exclude": [
105+
"**/node_modules/**"
106+
]
107+
}
108+
}
109+
}
110+
},
111+
"primeng-e2e": {
112+
"root": "e2e/",
113+
"projectType": "application",
114+
"architect": {
115+
"e2e": {
116+
"builder": "@angular-devkit/build-angular:protractor",
117+
"options": {
118+
"protractorConfig": "e2e/protractor.conf.js",
119+
"devServerTarget": "primeng:serve"
120+
}
121+
},
122+
"lint": {
123+
"builder": "@angular-devkit/build-angular:tslint",
124+
"options": {
125+
"tsConfig": "e2e/tsconfig.e2e.json",
126+
"exclude": [
127+
"**/node_modules/**"
128+
]
129+
}
130+
}
131+
}
132+
}
133+
},
134+
"defaultProject": "primeng"
135+
}
File renamed without changes.
File renamed without changes.

e2e/app.po.ts e2e/src/app.po.ts

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/tsconfig.e2e.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2-
"extends": "../tsconfig.json",
3-
"compilerOptions": {
4-
"outDir": "../out-tsc/e2e",
5-
"module": "commonjs",
6-
"target": "es5",
7-
"types": [
8-
"jasmine",
9-
"node"
10-
]
11-
}
12-
}
2+
"extends": "../tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "../out-tsc/app",
5+
"module": "commonjs",
6+
"target": "es5",
7+
"types": [
8+
"jasmine",
9+
"jasminewd2",
10+
"node"
11+
]
12+
}
13+
}

karma.conf.js

-39
This file was deleted.

0 commit comments

Comments
 (0)