Files
onspring-api-sdk-javascript/tsconfig.json
T

21 lines
381 B
JSON
Raw Normal View History

2023-01-25 17:08:19 -06:00
{
"compilerOptions": {
"strictNullChecks": true,
2023-01-25 17:08:19 -06:00
"declaration": true,
"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
},
"include": ["src/**/*"],
"ts-node": {
"compilerOptions": {
"module": "commonjs",
2023-02-17 01:09:25 -06:00
"target": "ES6"
},
"moduleTypes": {
"*.ts": "cjs"
}
}
2023-01-25 17:08:19 -06:00
}