2023-04-07 20:04:36 -07:00
|
|
|
{
|
2023-04-13 05:47:02 -07:00
|
|
|
"compilerOptions": {
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"target": "esnext",
|
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
// these options are overrides used only by ts-node
|
|
|
|
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
|
2023-04-07 20:04:36 -07:00
|
|
|
"compilerOptions": {
|
2023-04-13 05:47:02 -07:00
|
|
|
"module": "commonjs"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"ts/client/src"
|
|
|
|
]
|
2023-04-07 20:04:36 -07:00
|
|
|
}
|