1
0
Files
sequence-js/tsconfig.json

22 lines
457 B
JSON

{
"compilerOptions": {
"module": "Node16",
"target": "ES2023",
"moduleResolution": "Node16",
"rootDir": "src",
"outDir": "build",
"outFile": "build/index.ts",
"esModuleInterop": true,
"alwaysStrict": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true
},
"include": [
"src"
]
}