29 lines
754 B
JSON
29 lines
754 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"DOM",
|
|
"esnext",
|
|
"esnext.array",
|
|
"esnext.asynciterable",
|
|
"esnext.symbol"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"target": "ESNEXT",
|
|
"jsx": "preserve",
|
|
|
|
"baseUrl": "./src/",
|
|
"paths": {
|
|
"@webpack": ["./webpack"],
|
|
"@webpack/common": ["./webpack/common"],
|
|
"@utils/*": ["./utils/*"],
|
|
"@api/*": ["./api/*"],
|
|
"@components/*": ["./components/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|