stock-api/tsconfig.json
2020-07-21 16:53:37 +08:00

15 lines
334 B
JSON

{
"compilerOptions": {
"target": "es2017",
"outDir": "dist",
"rootDir": "src",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules/**", "dist/**"]
}