2022-08-28 20:25:27 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": 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"
|
|
|
|
],
|
2022-08-28 20:25:27 -04:00
|
|
|
"module": "commonjs",
|
|
|
|
"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": {
|
|
|
|
"@api/*": ["./api/*"],
|
2023-01-29 22:53:28 -05:00
|
|
|
"@components/*": ["./components/*"],
|
|
|
|
"@utils/*": ["./utils/*"],
|
|
|
|
"@webpack/types": ["./webpack/common/types"],
|
|
|
|
"@webpack/common": ["./webpack/common"],
|
|
|
|
"@webpack": ["./webpack/webpack"]
|
2023-04-19 17:08:07 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"plugins": [
|
|
|
|
// Transform paths in output .js files
|
|
|
|
{ "transform": "typescript-transform-paths" },
|
|
|
|
|
|
|
|
// Transform paths in output .d.ts files (Include this line if you output declarations files)
|
|
|
|
{
|
|
|
|
"transform": "typescript-transform-paths",
|
|
|
|
"afterDeclarations": true
|
|
|
|
}
|
|
|
|
]
|
2022-08-28 20:25:27 -04:00
|
|
|
},
|
2022-08-29 14:27:47 -04:00
|
|
|
"include": ["src/**/*"]
|
2022-08-28 20:25:27 -04:00
|
|
|
}
|