2022-05-02 09:23:58 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-06-10 06:02:03 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
2022-10-11 00:38:52 -07:00
|
|
|
"lib": [
|
|
|
|
"es2019"
|
|
|
|
],
|
2022-06-10 06:02:03 -07:00
|
|
|
"outDir": "./dist",
|
2022-05-02 09:23:58 -07:00
|
|
|
"resolveJsonModule": true,
|
2022-06-10 06:02:03 -07:00
|
|
|
"noImplicitAny": false,
|
2022-05-02 09:23:58 -07:00
|
|
|
"sourceMap": true,
|
2022-06-10 06:02:03 -07:00
|
|
|
"skipLibCheck": true,
|
2022-08-31 02:41:12 -07:00
|
|
|
"target": "es2019",
|
|
|
|
"strictNullChecks": true
|
2022-05-02 09:23:58 -07:00
|
|
|
},
|
2022-10-11 00:38:52 -07:00
|
|
|
"include": [
|
|
|
|
"ts/client/src",
|
|
|
|
"ts/client/src/scripts",
|
|
|
|
"ts/client/src/debug-scripts",
|
|
|
|
"ts/client/src/deployment-scripts"
|
|
|
|
],
|
2022-07-05 20:38:53 -07:00
|
|
|
"exclude": [
|
|
|
|
"./ts/**/*.test.js",
|
|
|
|
"node_modules",
|
|
|
|
]
|
2022-10-11 00:38:52 -07:00
|
|
|
}
|