stock-api/tsconfig.json

15 lines
334 B
JSON
Raw Normal View History

2020-07-21 16:53:37 +08:00
{
"compilerOptions": {
"target": "es2017",
"outDir": "dist",
"rootDir": "src",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules/**", "dist/**"]
}