2022-08-28 20:25:27 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-05-06 22:54:25 -04:00
|
|
|
"resolveJsonModule": true,
|
2022-08-28 20:25:27 -04:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2023-11-30 00:10:50 -05:00
|
|
|
"skipLibCheck": true,
|
2022-10-09 16:58:08 -04:00
|
|
|
"lib": [
|
|
|
|
"DOM",
|
2023-02-01 07:38:02 -05:00
|
|
|
"DOM.Iterable",
|
2022-10-09 16:58:08 -04:00
|
|
|
"esnext",
|
|
|
|
"esnext.array",
|
|
|
|
"esnext.asynciterable",
|
|
|
|
"esnext.symbol"
|
|
|
|
],
|
2024-03-13 16:45:45 -04:00
|
|
|
"module": "esnext",
|
2022-08-28 20:25:27 -04:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2022-08-29 14:27:47 -04:00
|
|
|
"target": "ESNEXT",
|
2022-11-28 07:37:55 -05:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
|
|
|
"baseUrl": "./src/",
|
|
|
|
"paths": {
|
2024-03-13 16:45:45 -04:00
|
|
|
"@main/*": ["./main/*"],
|
2022-11-28 07:37:55 -05:00
|
|
|
"@api/*": ["./api/*"],
|
2023-01-29 22:53:28 -05:00
|
|
|
"@components/*": ["./components/*"],
|
|
|
|
"@utils/*": ["./utils/*"],
|
2024-03-13 16:45:45 -04:00
|
|
|
"@shared/*": ["./shared/*"],
|
2023-01-29 22:53:28 -05:00
|
|
|
"@webpack/types": ["./webpack/common/types"],
|
|
|
|
"@webpack/common": ["./webpack/common"],
|
|
|
|
"@webpack": ["./webpack/webpack"]
|
2022-11-28 07:37:55 -05:00
|
|
|
}
|
2022-08-28 20:25:27 -04:00
|
|
|
},
|
2024-03-13 16:45:45 -04:00
|
|
|
"include": ["src/**/*", "browser/**/*", "scripts/**/*"]
|
2022-08-28 20:25:27 -04:00
|
|
|
}
|