mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-30 22:32:33 -05:00
This isn't totally complete, but enough to get everything building and tests running manually. The next commit will make the build work fully.
31 lines
713 B
JSON
31 lines
713 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"lib": ["es2018"],
|
|
"target": "es2018",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
|
|
"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": []
|
|
}
|
|
}
|