n2d
Version:
A script to transform an integer of the order int > 0 && int <= 10^15, into its descriptive text form.
26 lines • 519 B
JSON
{
"compilerOptions": {
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"inlineSourceMap": true,
"target": "es2017",
"outDir": "./js",
"module": "commonjs",
"baseUrl": "./src",
"typeRoots": [
"node_modules/@types"
]
},
"types": [
"node",
"reflect-metadata"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}