stock-api/tsconfig.json

32 lines
567 B
JSON
Raw Normal View History

2020-07-21 16:53:37 +08:00
{
"compilerOptions": {
"baseUrl": "src",
"rootDir": "src",
2020-07-21 16:53:37 +08:00
"target": "es2017",
"outDir": "dist",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@stocks/*": [
"stocks/*"
],
"@utils/*": [
"utils/*"
],
"@interfaces/*": [
"interfaces/*"
]
}
2020-07-21 16:53:37 +08:00
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules/**",
"dist/**"
]
2020-07-21 16:53:37 +08:00
}