mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
31 lines
857 B
JSON
31 lines
857 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,
|
|
"useUnknownInCatchVariables": false,
|
|
"baseUrl": "."
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|