stock-api/tsconfig.json

40 lines
714 B
JSON

{
"compilerOptions": {
"baseUrl": "src",
"rootDir": "src",
"target": "es2017",
"outDir": "dist",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"types/*": [
"../types/*"
],
"@stocks/*": [
"stocks/*"
],
"@utils/*": [
"utils/*"
],
"@interfaces/*": [
"interfaces/*"
]
},
"plugins": [
{
"transform": "typescript-transform-paths"
}
]
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules/**",
"dist/**"
]
}