Equicord/tsconfig.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2022-08-28 20:25:27 -04:00
{
"compilerOptions": {
"resolveJsonModule": true,
2022-08-28 20:25:27 -04:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
2023-11-30 00:10:50 -05:00
"skipLibCheck": true,
"lib": [
"DOM",
"DOM.Iterable",
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.symbol"
],
"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",
"jsx": "preserve",
"baseUrl": "./src/",
"paths": {
"@main/*": [
"./main/*"
],
2024-04-17 14:29:47 -04:00
"@api/*": [
"./api/*"
],
"@components/*": [
"./components/*"
],
"@utils/*": [
"./utils/*"
],
"@shared/*": [
"./shared/*"
],
"@webpack/types": [
"./webpack/common/types"
],
"@webpack/common": [
"./webpack/common"
],
"@webpack": [
"./webpack/webpack"
2024-07-07 00:34:27 -04:00
],
"@plugins": [
"./plugins"
2024-04-17 14:29:47 -04:00
]
},
"plugins": [
// 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
},
2024-04-17 14:29:47 -04:00
"include": [
"src/**/*"
]
}