mathml-to-latex/tsconfig.json

24 lines
361 B
JSON
Raw Normal View History

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