2021-05-12 07:29:17 -07:00
|
|
|
{
|
2021-05-16 02:22:19 -07:00
|
|
|
"compilerOptions": {
|
2021-05-16 07:42:06 -07:00
|
|
|
"target": "es2020",
|
2021-05-16 02:22:19 -07:00
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./built/",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"test/**/*",
|
|
|
|
]
|
2021-05-12 07:29:17 -07:00
|
|
|
}
|