19 lines
496 B
JSON
19 lines
496 B
JSON
{
|
|
"extends": "@tsconfig/node16/tsconfig.json",
|
|
"compilerOptions": {
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"outDir": "./dist/",
|
|
"baseUrl": "./src/",
|
|
"paths": {
|
|
"@abc/*": ["abc/*"],
|
|
"@logger": ["framework/logger/logger"],
|
|
"@configuration": ["framework/configuration/configuration"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
} |