chore: scaffold ssr compiler

This commit is contained in:
Evan You 2020-01-22 10:39:09 -05:00
parent 70e730fd19
commit eacd390992
4 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1 @@
# @vue/compiler-ssr

View File

@ -0,0 +1,7 @@
{
"extends": "../../api-extractor.json",
"mainEntryPointFilePath": "./dist/packages/<unscopedPackageName>/src/index.d.ts",
"dtsRollup": {
"untrimmedFilePath": "./dist/<unscopedPackageName>.d.ts"
}
}

View File

@ -0,0 +1,32 @@
{
"name": "@vue/compiler-ssr",
"version": "3.0.0-alpha.2",
"description": "@vue/compiler-ssr",
"main": "dist/compiler-ssr.cjs.js",
"types": "dist/compiler-ssr.d.ts",
"files": [
"dist"
],
"buildOptions": {
"prod": false,
"formats": [
"cjs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue.git"
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue/issues"
},
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-ssr#readme",
"dependencies": {
"@vue/compiler-core": "3.0.0-alpha.2"
}
}

View File

@ -0,0 +1,3 @@
export function hello(): string {
return 'TODO'
}