2020-08-15 14:45:36 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2022-02-28 08:28:55 +01:00
|
|
|
"target": "esnext",
|
2020-08-15 14:45:36 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"newLine": "lf",
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"sourceMap": true
|
|
|
|
|
},
|
|
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
|
|
|
}
|