File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
* .ts
2
2
! * .d.ts
3
3
* .js.map
4
+ src
4
5
5
6
.gitignore
6
7
.npmignore
Original file line number Diff line number Diff line change 5
5
"main" : " index.js" ,
6
6
"typings" : " index.d.ts" ,
7
7
"scripts" : {
8
+ "build" : " tsc -p src" ,
8
9
"test" : " echo \" Error: no test specified\" && exit 1"
9
10
},
10
11
"repository" : {
File renamed without changes.
Original file line number Diff line number Diff line change 26
26
"noFallthroughCasesInSwitch" : true , /* Report errors for fallthrough cases in switch statement. */
27
27
28
28
/* Module Resolution Options */
29
- "moduleResolution" : " node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
30
- }
29
+ "moduleResolution" : " node" , /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
30
+ "baseUrl" : " .." ,
31
+ "outDir" : " .."
32
+ },
33
+ "include" : [
34
+ " ./*.ts"
35
+ ],
36
+ "exclude" : [
37
+ " ../*.*"
38
+ ]
31
39
}
You can’t perform that action at this time.
0 commit comments