Equicord/tsconfig.json
2024-04-17 14:29:47 -04:00

48 lines
No EOL
1.1 KiB
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": {
"@api/*": [
"./api/*"
],
"@components/*": [
"./components/*"
],
"@utils/*": [
"./utils/*"
],
"@shared/*": [
"./shared/*"
],
"@webpack/types": [
"./webpack/common/types"
],
"@webpack/common": [
"./webpack/common"
],
"@webpack": [
"./webpack/webpack"
]
}
},
"include": [
"src/**/*"
]
}