mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 20:14:01 -06:00
TestRunner was already using it, but upstream projects (e.g. Compiler) were not, causing TestRunner to re-parse and re-bind all upstream files in (at least) editor scenarios), slowing down initial project load. In local testing, this cut a find-all-refs call in checker.ts from 5s to 2.5s.
31 lines
740 B
JSON
31 lines
740 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"lib": ["es2015.iterable", "es2015.generator", "es5"],
|
|
"target": "es5",
|
|
"moduleResolution": "node",
|
|
"rootDir": ".",
|
|
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"noEmitOnError": true,
|
|
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictPropertyInitialization": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"alwaysStrict": true,
|
|
"preserveConstEnums": true,
|
|
"newLine": "lf",
|
|
|
|
"types": []
|
|
}
|
|
}
|