mirror of
https://github.com/zhangxiangliang/stock-api.git
synced 2025-01-23 14:20:23 +08:00
40 lines
714 B
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/**"
|
|
]
|
|
}
|