File tree 2 files changed +12
-9
lines changed
2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 4
4
"description" : " The models of the Typescript MEAN Stack Boilerplate" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
+ "build" : " tsc" ,
7
8
"test" : " echo \" Error: no test specified\" && exit 1"
8
9
},
9
10
"author" :
" Seokjin Seo <[email protected] >" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "outDir" : " dist" ,
4
+ "baseUrl" : " src" ,
5
+ "sourceMap" : true ,
6
+ "declaration" : false ,
7
+ "experimentalDecorators" : true ,
8
+ "emitDecoratorMetadata" : true ,
3
9
"target" : " es6" ,
4
10
"lib" : [" es6" ],
5
11
"types" : [" reflect-metadata" ],
6
- "module" : " commonjs" ,
7
- "outDir" : " dist" ,
8
- "experimentalDecorators" : true ,
9
- "emitDecoratorMetadata" : true
12
+ "module" : " es6"
10
13
},
11
- "include" : [
12
- " src/**/*.ts"
13
- ],
14
14
"exclude" : [
15
- " node_modules"
15
+ " node_modules" ,
16
+ " **/*.spec.ts" ,
17
+ " **/*.test.ts"
16
18
]
17
- }
19
+ }
You can’t perform that action at this time.
0 commit comments