zed/styles/tsconfig.json

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