How to use the startTracing function from typescript

Find comprehensive JavaScript typescript.startTracing code examples handpicked from public code repositorys.

674
675
676
677
678
679
680
681
682
683
        ts.performance.enable();
    }
    // tracing is only available in 4.1 and above
    // See: https://github.com/microsoft/TypeScript/wiki/Performance-Tracing
    if ((compilerOptions.generateTrace || host.optionsToExtend.generateTrace) && ts.startTracing && !ts.tracing) {
        ts.startTracing('build', compilerOptions.generateTrace || host.optionsToExtend.generateTrace);
    }
}

function disableStatisticsAndTracing() {
fork icon26
star icon48
watch icon4

+ 711 other calls in file

Other functions in typescript

Sorted by popularity

function icon

typescript.SyntaxKind is the most popular function in typescript (82777 examples)