mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 02:37:05 +00:00
e996a66596
Based on #2558. Also fixes errors resulting from the stricter options.
26 lines
774 B
JSON
26 lines
774 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|