mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-07 11:11:30 +00:00
bfdd0824e2
TODO: Use StyleTree types to remove `any`s from styleTrees.
56 lines
1.4 KiB
JSON
56 lines
1.4 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"
|
|
]
|
|
}
|