File tree 3 files changed +19
-7
lines changed
3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* ]
4
+ indent_style = space
5
+ indent_size = 4
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " development" ,
3
2
"type" : " mysql" ,
4
3
"host" : " localhost" ,
5
4
"port" : 3306 ,
8
7
"database" : " microfrontends" ,
9
8
"synchronize" : true ,
10
9
"entities" : [
11
- " src/entity /*.ts"
10
+ " api/entities /*.ts"
12
11
],
13
12
"subscribers" : [
14
- " src/subscriber /*.ts"
13
+ " api/subscribers /*.ts"
15
14
],
16
15
"migrations" : [
17
- " src/migration /*.ts"
16
+ " api/migrations /*.ts"
18
17
],
19
18
"cli" : {
20
- "entitiesDir" : " src/entity " ,
21
- "migrationsDir" : " src/migration " ,
22
- "subscribersDir" : " src/subscriber "
19
+ "entitiesDir" : " api/entities " ,
20
+ "migrationsDir" : " api/migrations " ,
21
+ "subscribersDir" : " api/subscribers "
23
22
}
24
23
}
Original file line number Diff line number Diff line change 7
7
"noImplicitAny" : true ,
8
8
"emitDecoratorMetadata" : true ,
9
9
"experimentalDecorators" : true ,
10
+ "module" : " commonjs" ,
10
11
"moduleResolution" : " node" ,
11
12
"target" : " es6" ,
12
13
"lib" : [
22
23
},
23
24
"exclude" : [
24
25
" node_modules"
26
+ ],
27
+ "include" : [
28
+ " ./**/*"
25
29
]
26
30
}
You can’t perform that action at this time.
0 commit comments