-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(global): fix npmignore files and tsconfig.json
it seems like lerna doesn't use the root npmignore file, plus tsconfig was extending a non existing common file because only the sub dir is published
- Loading branch information
Showing
6 changed files
with
44 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
coverage | ||
.nyc_output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,24 @@ | ||
{ | ||
"extends": "../../tsconfig.common.json", | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"target": "es5", | ||
"moduleResolution": "node", | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"declaration": true, // generate .d.ts files | ||
"declarationMap": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": false, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"sourceMap": true, | ||
"downlevelIteration": true, | ||
"lib": ["es2015", "es2016", "dom"], | ||
"pretty": true, | ||
"strict": true, | ||
"baseUrl": ".", | ||
"outDir": "dist", | ||
"types": ["jasmine","node"], | ||
"types": ["jasmine", "node"] | ||
}, | ||
"include": [ | ||
"spec" | ||
] | ||
} | ||
"include": ["spec"] | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,24 @@ | ||
{ | ||
"extends": "../../tsconfig.common.json", | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"target": "es5", | ||
"moduleResolution": "node", | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"declaration": true, // generate .d.ts files | ||
"declarationMap": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": false, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"sourceMap": true, | ||
"downlevelIteration": true, | ||
"lib": ["es2015", "es2016", "dom"], | ||
"pretty": true, | ||
"strict": true, | ||
"baseUrl": ".", | ||
"outDir": "dist", | ||
"types": ["jest","node"] | ||
"types": ["jest", "node"] | ||
}, | ||
"include": [ | ||
"spec" | ||
] | ||
} | ||
"include": ["spec"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
coverage | ||
.nyc_output |
This file was deleted.
Oops, something went wrong.