2022-08-29 00:25:27 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-05-07 02:54:25 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-08-29 00:25:27 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2023-11-30 05:10:50 +00:00
|
|
|
"skipLibCheck": true,
|
2022-10-09 20:58:08 +00:00
|
|
|
"lib": [
|
|
|
|
"DOM",
|
2023-02-01 12:38:02 +00:00
|
|
|
"DOM.Iterable",
|
2022-10-09 20:58:08 +00:00
|
|
|
"esnext",
|
|
|
|
"esnext.array",
|
|
|
|
"esnext.asynciterable",
|
|
|
|
"esnext.symbol"
|
|
|
|
],
|
2024-03-13 20:45:45 +00:00
|
|
|
"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",
|
2022-11-28 12:37:55 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
|
|
|
"baseUrl": "./src/",
|
|
|
|
"paths": {
|
2024-05-26 02:57:23 +00:00
|
|
|
"@main/*": [ "./main/*" ],
|
|
|
|
"@api/*": [ "./api/*" ],
|
|
|
|
"@components/*": [ "./components/*" ],
|
|
|
|
"@utils/*": [ "./utils/*" ],
|
|
|
|
"@shared/*": [ "./shared/*" ],
|
|
|
|
"@webpack/types": [ "./webpack/common/types" ],
|
|
|
|
"@webpack/common": [ "./webpack/common" ],
|
|
|
|
"@webpack": [ "./webpack/webpack" ]
|
2024-05-17 21:01:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
"plugins": [
|
|
|
|
// Transform paths in output .d.ts files (Include this line if you output declarations files)
|
|
|
|
{
|
|
|
|
"transform": "typescript-transform-paths",
|
|
|
|
"afterDeclarations": true
|
|
|
|
}
|
|
|
|
]
|
2022-08-29 00:25:27 +00:00
|
|
|
},
|
2024-05-26 02:57:23 +00:00
|
|
|
"include": [ "src/**/*", "browser/**/*", "scripts/**/*", "packages/**/*" ],
|
2022-08-29 00:25:27 +00:00
|
|
|
}
|