zed/styles/tsconfig.json

57 lines
1.4 KiB
JSON
Raw Normal View History

{
"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,
2023-06-16 04:37:08 +00:00
"skipLibCheck": true,
"useUnknownInCatchVariables": false,
2023-06-16 04:37:08 +00:00
"baseUrl": ".",
"paths": {
"@/*": [
"./*"
],
"@element/*": [
"./src/element/*"
],
"@component/*": [
"./src/component/*"
],
"@styleTree/*": [
"./src/styleTree/*"
],
"@theme/*": [
"./src/theme/*"
],
"@types/*": [
"./src/util/*"
],
"@themes/*": [
"./src/themes/*"
],
"@util/*": [
"./src/util/*"
]
2023-06-16 04:37:08 +00:00
}
},
"exclude": [
"node_modules"
]
2022-04-06 15:28:56 +00:00
}