2021-10-30 17:26:41 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-11-07 22:39:59 +00:00
|
|
|
"target": "ES2017",
|
2021-11-02 04:29:24 +00:00
|
|
|
"module": "CommonJS",
|
2021-10-30 17:26:41 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"outDir": "dist"
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2021-12-01 02:45:06 +00:00
|
|
|
"dist",
|
|
|
|
"client/tests"
|
2021-10-30 17:26:41 +00:00
|
|
|
]
|
|
|
|
}
|