2021-05-12 09:29:17 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./built/",
|
|
|
|
"rootDir": "./src/",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": true,
|
2021-05-13 21:46:39 -05:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
2021-05-12 09:29:17 -05:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"test/**/*",
|
|
|
|
]
|
|
|
|
}
|