2022-08-29 03:25:27 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-05-07 05:54:25 +03:00
|
|
|
"resolveJsonModule": true,
|
2022-08-29 03:25:27 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2023-11-30 07:10:50 +02:00
|
|
|
"skipLibCheck": true,
|
2024-08-02 13:12:59 +03:00
|
|
|
"allowJs": true,
|
2022-10-09 23:58:08 +03:00
|
|
|
"lib": [
|
|
|
|
"DOM",
|
2023-02-01 14:38:02 +02:00
|
|
|
"DOM.Iterable",
|
2022-10-09 23:58:08 +03:00
|
|
|
"esnext",
|
|
|
|
"esnext.array",
|
|
|
|
"esnext.asynciterable",
|
|
|
|
"esnext.symbol"
|
|
|
|
],
|
2024-03-13 22:45:45 +02:00
|
|
|
"module": "esnext",
|
2022-08-29 03:25:27 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2022-08-29 21:27:47 +03:00
|
|
|
"target": "ESNEXT",
|
2022-11-28 14:37:55 +02:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
|
|
|
"baseUrl": "./src/",
|
|
|
|
"paths": {
|
2024-03-13 22:45:45 +02:00
|
|
|
"@main/*": ["./main/*"],
|
2022-11-28 14:37:55 +02:00
|
|
|
"@api/*": ["./api/*"],
|
2023-01-30 05:53:28 +02:00
|
|
|
"@components/*": ["./components/*"],
|
|
|
|
"@utils/*": ["./utils/*"],
|
2024-03-13 22:45:45 +02:00
|
|
|
"@shared/*": ["./shared/*"],
|
2023-01-30 05:53:28 +02:00
|
|
|
"@webpack/types": ["./webpack/common/types"],
|
|
|
|
"@webpack/common": ["./webpack/common"],
|
|
|
|
"@webpack": ["./webpack/webpack"]
|
2024-05-18 00:01:07 +03: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 13:12:59 +03:00
|
|
|
],
|
|
|
|
"outDir": "who-fucking-cares-dude"
|
2022-08-29 03:25:27 +03:00
|
|
|
},
|
2024-08-02 13:12:59 +03:00
|
|
|
"include": ["src/**/*", "browser/**/*", "scripts/**/*", "eslint.config.mjs"],
|
2022-08-29 03:25:27 +03:00
|
|
|
}
|