mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2024-10-01 01:35:42 -04:00
28 lines
640 B
JSON
28 lines
640 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"target": "es2021",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src/index.ts"],
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|