Files
litlyx/tsconfig.json
2024-11-15 23:36:40 +01:00

28 lines
631 B
JSON

{
"compilerOptions": {
"module": "NodeNext",
"target": "ESNext",
"moduleResolution": "nodenext",
"paths": {
"@schema/*": [
"./shared/schema/*"
],
"@services/*": [
"./shared/services/*"
],
"@data/*": [
"./shared/data/*"
],
"@functions/*": [
"./shared/functions/*"
],
"@utils/*": [
"./shared/utils/*"
]
},
"skipLibCheck": true
},
"exclude": [
"node_modules"
]
}