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