stock-api/tsconfig.json
2020-07-22 01:10:03 +08:00

32 lines
567 B
JSON

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