1
0
Files
sequence-js/tsconfig.json
2025-11-22 14:09:18 +01:00

23 lines
484 B
JSON

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