speedscope/tsconfig.json
Jamie Wong 4e32a73802
Fix existing code splitting & code split profile importers into their own chunk (#79)
At some point in the past, the code splitting of demangle-cpp got broken. This fixes that and also code splits out all fo the different profile importers into their own module since they aren't needed for initial render of the page.
2018-06-30 17:26:28 -07:00

13 lines
230 B
JSON

{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "Node",
"esModuleInterop": true,
"strict": true,
"jsx": "react",
"noUnusedLocals": true,
"jsxFactory": "h",
"target": "es2015"
}
}