mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
32 lines
695 B
JSON
32 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "NodeNext",
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@schema/*": [
|
|
"../shared/schema/*"
|
|
],
|
|
"@services/*": [
|
|
"../shared/services/*"
|
|
],
|
|
"@data/*": [
|
|
"../shared/data/*"
|
|
],
|
|
"@functions/*": [
|
|
"../shared/functions/*"
|
|
],
|
|
"@utils/*": [
|
|
"../shared/utils/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |