stock-api/tsconfig.json
2020-07-27 01:33:09 +08:00

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/**"
]
}