mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
b015f506da
through `contact_notification`
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
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": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@element/*": ["./src/element/*"],
|
|
"@component/*": ["./src/component/*"],
|
|
"@styleTree/*": ["./src/styleTree/*"],
|
|
"@theme/*": ["./src/theme/*"],
|
|
"@types/*": ["./src/util/*"],
|
|
"@themes/*": ["./src/themes/*"],
|
|
"@util/*": ["./src/util/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|