Files
anthill-pot/tsconfig.json
2022-03-25 13:47:16 +01:00

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"]
}