mathml-to-latex/tsconfig.json

15 lines
288 B
JSON
Raw Normal View History

2020-09-01 18:02:37 +02:00
{
"compilerOptions": {
"baseUrl": "src",
"outDir": "dist",
2020-09-01 18:02:37 +02:00
"target": "es5",
"module": "commonjs",
"esModuleInterop": true,
2020-09-01 18:02:37 +02:00
"declaration": true,
2020-09-26 23:01:12 +02:00
"strict": true,
"rootDir": "src"
2020-09-01 18:02:37 +02:00
},
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
}