2023-01-25 17:08:19 -06:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-02-02 13:53:02 -06:00
|
|
|
"strictNullChecks": true,
|
2023-01-25 17:08:19 -06:00
|
|
|
"declaration": true,
|
2023-02-04 00:25:08 -06:00
|
|
|
"declarationDir": "./dist/types",
|
2023-02-04 15:09:13 -06:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"moduleResolution": "node"
|
2023-01-25 17:08:19 -06:00
|
|
|
},
|
2023-02-04 00:25:08 -06:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"ts-node": {
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
2023-02-17 01:09:25 -06:00
|
|
|
"target": "ES6"
|
2023-02-04 00:25:08 -06:00
|
|
|
},
|
2023-02-21 13:23:07 -06:00
|
|
|
"experimentalResolver": true,
|
2023-02-04 00:25:08 -06:00
|
|
|
"moduleTypes": {
|
|
|
|
|
"*.ts": "cjs"
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-25 17:08:19 -06:00
|
|
|
}
|