forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build) share tsconfig, add 'clean' and npmignore
- Loading branch information
1 parent
04fe22b
commit 0e71949
Showing
16 changed files
with
167 additions
and
165 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
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,9 @@ | ||
# source | ||
**/*.ts | ||
*.ts | ||
|
||
# configuration | ||
package-lock.json | ||
tslint.json | ||
tsconfig.json | ||
.prettierrc |
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 +1,2 @@ | ||
/bundle | ||
packages/**/*.d.ts | ||
packages/**/*.js |
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
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,7 +1,5 @@ | ||
{ | ||
"lerna": "2.4.0", | ||
"packages": [ | ||
"bundle/*" | ||
], | ||
"packages": ["packages/*"], | ||
"version": "5.3.11" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
File renamed without changes.
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,27 +1,8 @@ | ||
{ | ||
"extends": "./../tsconfig.base.json", | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"declaration": true, | ||
"noImplicitAny": false, | ||
"noUnusedLocals": false, | ||
"removeComments": false, | ||
"noLib": false, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"target": "es2017", | ||
"sourceMap": false, | ||
"allowJs": false, | ||
"rootDir": "./", | ||
"strict": true, | ||
"strictNullChecks": false, | ||
"outDir": "../../node_modules/@nestjs/common" | ||
"baseUrl": "./" | ||
}, | ||
"include": [ | ||
"*.ts", | ||
"**/*.ts" | ||
], | ||
"exclude": [ | ||
"../../node_modules", | ||
"./**/*.spec.ts" | ||
] | ||
} | ||
"include": ["*.ts", "**/*.ts"] | ||
} |
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
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,30 +1,8 @@ | ||
{ | ||
"extends": "./../tsconfig.base.json", | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"declaration": true, | ||
"noImplicitAny": false, | ||
"noUnusedLocals": false, | ||
"removeComments": false, | ||
"noLib": false, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"target": "es2017", | ||
"sourceMap": false, | ||
"allowJs": false, | ||
"rootDir": "./", | ||
"baseUrl": "../../", | ||
"strict": true, | ||
"strictNullChecks": false, | ||
"noImplicitThis": false, | ||
"outDir": "../../node_modules/@nestjs/core" | ||
"baseUrl": "./" | ||
}, | ||
"include": [ | ||
"*.ts", | ||
"**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules/reflect-metadata", | ||
"node_modules/@types/reflect-metadata", | ||
"./**/*.spec.ts" | ||
] | ||
} | ||
"include": ["*.ts", "**/*.ts"] | ||
} |
Oops, something went wrong.