1
0
Files
sequence-js/tsconfig.json
Herve BECHER 0fd0e3bada sync
2025-05-24 12:11:44 +02: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"
]
}