Equicord/tsconfig.json
thororen1234 f8879cc801 Merge remote-tracking branch 'upstream/dev' into dev
# Conflicts:
#	eslint.config.mjs
#	package.json
#	pnpm-lock.yaml
#	src/components/PluginSettings/index.tsx
#	src/plugins/imageZoom/index.tsx
#	src/plugins/messageLogger/index.tsx
#	src/plugins/pictureInPicture/index.tsx
#	src/plugins/serverInfo/GuildInfoModal.tsx
#	src/plugins/whoReacted/index.tsx
2025-01-04 17:57:05 -05:00

70 lines
No EOL
1.8 KiB
JSON

{
"compilerOptions": {
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
"lib": [
"DOM",
"DOM.Iterable",
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.symbol"
],
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
"target": "ESNEXT",
"jsx": "preserve",
"baseUrl": "./src/",
"paths": {
"@main/*": [
"./main/*"
],
"@api/*": [
"./api/*"
],
"@components/*": [
"./components/*"
],
"@utils/*": [
"./utils/*"
],
"@shared/*": [
"./shared/*"
],
"@webpack/types": [
"./webpack/common/types"
],
"@webpack/common": [
"./webpack/common"
],
"@webpack": [
"./webpack/webpack"
],
"@plugins": [
"./plugins"
],
"@equicordplugins": [
"./equicordplugins"
]
},
"plugins": [
// Transform paths in output .d.ts files (Include this line if you output declarations files)
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
],
"outDir": "who-fucking-cares-dude"
},
"include": [
"src/**/*",
"browser/**/*",
"scripts/**/*",
"eslint.config.mjs"
],
}