Vencord/tsconfig.json

46 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2022-08-29 00:25:27 +00:00
{
"compilerOptions": {
"resolveJsonModule": true,
2022-08-29 00:25:27 +00:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
2023-11-30 05:10:50 +00:00
"skipLibCheck": true,
"allowJs": true,
"lib": [
"DOM",
"DOM.Iterable",
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.symbol"
],
"module": "esnext",
2022-08-29 00:25:27 +00:00
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
2022-08-29 18:27:47 +00:00
"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": [
// 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"
2022-08-29 00:25:27 +00:00
},
"include": ["src/**/*", "browser/**/*", "scripts/**/*", "eslint.config.mjs"],
2022-08-29 00:25:27 +00:00
}