File tree 3 files changed +17
-16
lines changed
3 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 4
4
BIN = $(shell yarn bin)
5
5
6
6
types :
7
- npx tsc --build
7
+ npx tsc --build tsconfig.build.json
8
8
9
9
types-watch :
10
- npx tsc --build --watch
10
+ npx tsc --build tsconfig.build.json --watch
11
11
12
12
types-diagnoze :
13
- npx tsc --build -- extendedDiagnostics
13
+ npx tsc --extendedDiagnostics
14
14
15
15
types-trace :
16
- npx tsc --build -- generateTrace tmp/trace
16
+ npx tsc --generateTrace tmp/trace
17
17
npx analyze-trace tmp/trace
18
18
19
- types-profile :
20
- node --trace-ic ./node_modules/typescript/lib/tsc.js --generateCpuProfile tmp/profile.cpuprofile --build
21
-
22
19
test : test-node test-browser
23
20
.PHONY : test
24
21
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.base" ,
3
+ "files" : [],
4
+ "references" : [
5
+ {
6
+ "path" : " ./tsconfig.dev.json"
7
+ },
8
+ {
9
+ "path" : " ./src/tysts/loose/tsconfig.json"
10
+ }
11
+ ]
12
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ./tsconfig.base" ,
3
- "files" : [],
4
- "references" : [
5
- {
6
- "path" : " ./tsconfig.dev.json"
7
- },
8
- {
9
- "path" : " ./src/tysts/loose/tsconfig.json"
10
- }
11
- ]
3
+ "include" : [" src/**/*.ts" ]
12
4
}
You can’t perform that action at this time.
0 commit comments