mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
feat(ssr): add ionic angular server (#18880)
This commit is contained in:
@@ -1,7 +1,25 @@
|
||||
{
|
||||
"name": "@ionic/angular-server",
|
||||
"version": "0.0.2",
|
||||
"description": "Angular SSR Module for Ionic",
|
||||
"version": "0.0.0",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
"angular",
|
||||
"universal",
|
||||
"ssr",
|
||||
"prerender",
|
||||
"serverside"
|
||||
],
|
||||
"author": "Ionic Team",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ionic-team/ionic.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ionic-team/ionic/issues"
|
||||
},
|
||||
"homepage": "https://ionicframework.com/",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"files": [
|
||||
@@ -13,24 +31,24 @@
|
||||
"clean": "rm -rf ./dist"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@angular-devkit/core": "~8.0.0",
|
||||
"@angular/common": "~8.0.0",
|
||||
"@angular/core": "~8.0.0",
|
||||
"@angular/platform-server": "~8.0.0",
|
||||
"@angular-devkit/core": "^8.0.0",
|
||||
"@angular/common": "^8.0.0",
|
||||
"@angular/core": "^8.0.0",
|
||||
"@angular/platform-server": "^8.0.0",
|
||||
"@ionic/core": "*",
|
||||
"rxjs": ">=6.2.0",
|
||||
"zone.js": ">=0.8.26"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/core": "~8.0.0",
|
||||
"@angular/animations": "~8.0.0",
|
||||
"@angular/common": "~8.0.0",
|
||||
"@angular/compiler": "~8.0.0",
|
||||
"@angular/compiler-cli": "~8.0.0",
|
||||
"@angular/core": "~8.0.0",
|
||||
"@angular/platform-browser": "~8.0.0",
|
||||
"@angular/platform-server": "~8.0.0",
|
||||
"@angular/router": "~8.0.0",
|
||||
"@angular-devkit/core": "^8.0.0",
|
||||
"@angular/animations": "^8.0.0",
|
||||
"@angular/common": "^8.0.0",
|
||||
"@angular/compiler": "^8.0.0",
|
||||
"@angular/compiler-cli": "^8.0.0",
|
||||
"@angular/core": "^8.0.0",
|
||||
"@angular/platform-browser": "^8.0.0",
|
||||
"@angular/platform-server": "^8.0.0",
|
||||
"@angular/router": "^8.0.0",
|
||||
"rxjs": "^6.4.0",
|
||||
"tsickle": "^0.34.0",
|
||||
"typescript": "~3.4.3",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig",
|
||||
"compilerOptions": {
|
||||
"module": "CommonJS",
|
||||
"rootDir": "src",
|
||||
"outDir": "dist"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user