File tree 4 files changed +28
-40
lines changed
4 files changed +28
-40
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
dryRun : true ,
6
6
replace : false ,
7
7
verify : false ,
8
+ tsconfig : true ,
8
9
tslint : true ,
9
10
editorconfig : true ,
10
11
tsfmt : true
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " use-typescript-formatter-api-sample" ,
3
- "private" : true ,
4
- "version" : " 0.0.1" ,
5
- "description" : " " ,
6
- "main" : " index.js" ,
7
- "scripts" : {
8
- "setup" : " dtsm install" ,
9
- "build" : " tsc -p ./" ,
10
- "exec" : " node index" ,
11
- "test" : " npm run setup && npm run build && npm run exec"
12
- },
13
-
14
- "license" : " MIT" ,
15
- "dependencies" : {
16
- "typescript-formatter" : " ^1.0.0"
17
- }
2
+ "name" : " use-typescript-formatter-api-sample" ,
3
+ "private" : true ,
4
+ "version" : " 0.0.1" ,
5
+ "description" : " " ,
6
+ "main" : " index.js" ,
7
+ "scripts" : {
8
+ "build" : " tsc -p ./" ,
9
+ "exec" : " node index" ,
10
+ "test" : " npm run build && npm run exec"
11
+ },
12
+
13
+ "license" : " MIT" ,
14
+ "dependencies" : {
15
+ "typescript-formatter" : " ^3.0.0"
16
+ },
17
+ "devDependencies" : {
18
+ "typescript" : " ^2.0.0"
19
+ }
18
20
}
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"module" : " commonjs" ,
4
4
"target" : " es5" ,
5
+ "lib" : [
6
+ " es2015"
7
+ ],
5
8
"noImplicitAny" : true ,
6
- "rootDir" : " ." ,
9
+ "strictNullChecks" : true ,
10
+ "noEmitOnError" : true ,
11
+ "noImplicitReturns" : true ,
12
+ "noImplicitThis" : true ,
13
+ "noUnusedLocals" : true ,
14
+ "noUnusedParameters" : true ,
7
15
"sourceMap" : false ,
8
16
"listFiles" : true
9
17
},
You can’t perform that action at this time.
0 commit comments