Files
tlsn-js/tsconfig.json
tsukino 4f9c6f3ee6 fix: enable error catching for wasm module (#10)
* wip: testing error catching

* chore: version update

* chore: add mocha test boilerplate

* chore: fix linter
2024-01-30 09:38:18 -05:00

23 lines
509 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "esnext",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"sourceMap": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src"
]
}