Skip to content

Commit 4ffb901

Browse files
author
Jason Blackburn
committed
fix: coreui#2 generate missing metadata.json files
1 parent e5a9def commit 4ffb901

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.DS_Store
22
package-lock.json
3-
tsconfig.json
43

54
# Folders to ignore
65
node_modules

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"zone.js": "0.8.20"
2424
},
2525
"scripts": {
26-
"compile": "node_modules/.bin/ngc -p src/tsconfig.json",
26+
"compile": "node_modules/.bin/ngc -p tsconfig.json",
2727
"dist": "npm run compile && npm run lint && npm run htmlcopy && npm run jsoncopy",
2828
"htmlcopy": "copyfiles -u 1 src/**/*.html dist",
2929
"jsoncopy": "copyfiles -u 1 src/package.json dist",

tsconfig.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compileOnSave": false,
3+
"compilerOptions": {
4+
"outDir": "./temp/out-tsc",
5+
"sourceMap": true,
6+
"declaration": true,
7+
"moduleResolution": "node",
8+
"emitDecoratorMetadata": true,
9+
"experimentalDecorators": true,
10+
"target": "es5",
11+
"module": "es6",
12+
"typeRoots": [
13+
"node_modules/@types"
14+
],
15+
"lib": [
16+
"es6",
17+
"dom"
18+
]
19+
}
20+
}

0 commit comments

Comments
 (0)