2020-08-15 08:45:36 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-21 05:57:36 -04:00
|
|
|
"target": "es6",
|
2020-08-15 08:45:36 -04:00
|
|
|
"module": "commonjs",
|
|
|
|
"newLine": "lf",
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
2022-03-21 05:57:36 -04:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-08-15 08:45:36 -04:00
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2022-03-21 05:57:36 -04:00
|
|
|
"useUnknownInCatchVariables": false,
|
2020-08-15 08:45:36 -04:00
|
|
|
},
|
2022-03-21 05:57:36 -04:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.test.ts",
|
|
|
|
"jest.config.ts"
|
|
|
|
]
|
2020-08-15 08:45:36 -04:00
|
|
|
}
|