2022-08-29 00:25:27 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": 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"
|
|
|
|
],
|
2022-08-29 00:25:27 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"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": {
|
|
|
|
"@api/*": ["./api/*"],
|
2023-01-30 03:53:28 +00:00
|
|
|
"@components/*": ["./components/*"],
|
|
|
|
"@utils/*": ["./utils/*"],
|
|
|
|
"@webpack/types": ["./webpack/common/types"],
|
|
|
|
"@webpack/common": ["./webpack/common"],
|
|
|
|
"@webpack": ["./webpack/webpack"]
|
2022-11-28 12:37:55 +00:00
|
|
|
}
|
2022-08-29 00:25:27 +00:00
|
|
|
},
|
2022-08-29 18:27:47 +00:00
|
|
|
"include": ["src/**/*"]
|
2022-08-29 00:25:27 +00:00
|
|
|
}
|