2019-09-21 01:41:21 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-03-06 12:29:10 +00:00
|
|
|
"lib": ["ES2019"],
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "ES2019",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"esModuleInterop": true,
|
2020-01-18 01:29:06 +00:00
|
|
|
"resolveJsonModule": true
|
2019-09-21 01:41:21 +00:00
|
|
|
},
|
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
|
|
}
|