2022-05-02 09:23:58 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-03-14 05:14:45 -07:00
|
|
|
"esModuleInterop": true,
|
2023-02-21 23:36:59 -08:00
|
|
|
"module": "esnext",
|
2022-06-10 06:02:03 -07:00
|
|
|
"moduleResolution": "node",
|
2023-03-14 05:14:45 -07:00
|
|
|
"noEmit": true,
|
2022-06-10 06:02:03 -07:00
|
|
|
"noImplicitAny": false,
|
2023-03-14 05:14:45 -07:00
|
|
|
"resolveJsonModule": true,
|
2022-06-10 06:02:03 -07:00
|
|
|
"skipLibCheck": true,
|
2023-03-07 08:35:13 -08:00
|
|
|
"strictNullChecks": true,
|
2024-07-09 00:44:08 -07:00
|
|
|
"target": "esnext"
|
2022-05-02 09:23:58 -07:00
|
|
|
},
|
2023-02-22 01:23:50 -08:00
|
|
|
"ts-node": {
|
|
|
|
// these options are overrides used only by ts-node
|
|
|
|
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs"
|
|
|
|
}
|
|
|
|
},
|
2024-07-09 00:44:08 -07:00
|
|
|
"include": ["ts/client/src"],
|
|
|
|
"exclude": ["ts/client/scripts"]
|
|
|
|
}
|