2022-08-29 02:25:27 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-05-07 04:54:25 +02:00
|
|
|
"resolveJsonModule": true,
|
2022-08-29 02:25:27 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2023-11-30 06:10:50 +01:00
|
|
|
"skipLibCheck": true,
|
2024-08-02 12:12:59 +02:00
|
|
|
"allowJs": true,
|
2022-10-09 22:58:08 +02:00
|
|
|
"lib": [
|
|
|
|
"DOM",
|
2023-02-01 13:38:02 +01:00
|
|
|
"DOM.Iterable",
|
2022-10-09 22:58:08 +02:00
|
|
|
"esnext",
|
|
|
|
"esnext.array",
|
|
|
|
"esnext.asynciterable",
|
|
|
|
"esnext.symbol"
|
|
|
|
],
|
2024-03-13 21:45:45 +01:00
|
|
|
"module": "esnext",
|
2022-08-29 02:25:27 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2022-08-29 20:27:47 +02:00
|
|
|
"target": "ESNEXT",
|
2022-11-28 13:37:55 +01:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
|
|
|
"baseUrl": "./src/",
|
|
|
|
"paths": {
|
2024-03-13 21:45:45 +01:00
|
|
|
"@main/*": ["./main/*"],
|
2022-11-28 13:37:55 +01:00
|
|
|
"@api/*": ["./api/*"],
|
2023-01-30 04:53:28 +01:00
|
|
|
"@components/*": ["./components/*"],
|
|
|
|
"@utils/*": ["./utils/*"],
|
2024-03-13 21:45:45 +01:00
|
|
|
"@shared/*": ["./shared/*"],
|
2023-01-30 04:53:28 +01:00
|
|
|
"@webpack/types": ["./webpack/common/types"],
|
|
|
|
"@webpack/common": ["./webpack/common"],
|
|
|
|
"@webpack": ["./webpack/webpack"]
|
2024-05-17 23:01:07 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
"plugins": [
|
|
|
|
// Transform paths in output .d.ts files (Include this line if you output declarations files)
|
|
|
|
{
|
|
|
|
"transform": "typescript-transform-paths",
|
|
|
|
"afterDeclarations": true
|
|
|
|
}
|
2024-08-02 12:12:59 +02:00
|
|
|
],
|
|
|
|
"outDir": "who-fucking-cares-dude"
|
2022-08-29 02:25:27 +02:00
|
|
|
},
|
2024-08-02 12:12:59 +02:00
|
|
|
"include": ["src/**/*", "browser/**/*", "scripts/**/*", "eslint.config.mjs"],
|
2022-08-29 02:25:27 +02:00
|
|
|
}
|