mirror of
https://github.com/zhangxiangliang/stock-api.git
synced 2025-01-23 22:40:21 +08:00
21 lines
382 B
JSON
21 lines
382 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"rootDir": "src",
|
|
"target": "es2017",
|
|
"outDir": "dist",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules/**",
|
|
"dist/**"
|
|
]
|
|
}
|