Files
mac/tsconfig.json
macdev 6e4dc5ae6b
Test / Test (pull_request) Has been cancelled
Initial commit
2026-05-31 01:55:36 +02:00

90 lines
2.3 KiB
JSON

{
"compilerOptions": {
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": false,
"allowJs": true,
"lib": [
"DOM",
"DOM.Iterable",
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.symbol"
],
"module": "esnext",
"moduleResolution": "bundler",
"strict": true,
"noImplicitAny": false,
"target": "ESNEXT",
"jsx": "preserve",
"baseUrl": "./src/",
"paths": {
"@main/*": [
"./main/*"
],
"@api/*": [
"./api/*"
],
"@components/*": [
"./components/*"
],
"@utils/*": [
"./utils/*"
],
"@debug/*": [
"./debug/*"
],
"@plugins/*": [
"./plugins/*"
],
"@shared/*": [
"./shared/*"
],
"@webpack/common": [
"./webpack/common"
],
"@webpack/common/*": [
"./webpack/common/*"
],
"@webpack": [
"./webpack/webpack"
],
"@webpack/patcher": [
"./webpack/patchWebpack"
],
"@webpack/wreq.d": [
"./webpack/wreq.d"
],
"@nightcordplugins/*": [
"./nightcordplugins/*"
],
"main/*": [
"./nightcord/main/*"
],
"shared/*": [
"./nightcord/shared/*",
"./shared/*"
],
"renderer/*": [
"./nightcord/renderer/*"
]
},
"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"
],
}