9aa205b5ec
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
34 lines
986 B
JSON
34 lines
986 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"esnext",
|
|
"esnext.array",
|
|
"esnext.asynciterable",
|
|
"esnext.symbol"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"target": "ESNEXT",
|
|
"jsx": "preserve",
|
|
|
|
"baseUrl": "./src/",
|
|
"paths": {
|
|
"@main/*": ["./main/*"],
|
|
"@api/*": ["./api/*"],
|
|
"@components/*": ["./components/*"],
|
|
"@utils/*": ["./utils/*"],
|
|
"@shared/*": ["./shared/*"],
|
|
"@webpack/types": ["./webpack/common/types"],
|
|
"@webpack/common": ["./webpack/common"],
|
|
"@webpack": ["./webpack/webpack"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "browser/**/*", "scripts/**/*"]
|
|
}
|