stock-api/tsconfig.json

21 lines
382 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
2020-07-21 16:53:37 +08:00
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules/**",
"dist/**"
]
2020-07-21 16:53:37 +08:00
}