Tsconfig dx-team preset
This package provides a custom preset
for typescript, specifically designed
for the DX team at FingerprintJS.
Installation
To install this package, use the following command:
pnpm install @fingerprintjs/tsconfig-dx-team
Configuration
To use this preset in your project, add the following configuration to your project's tsconfig.json configuration file:
{
"extends": "@fingerprintjs/tsconfig-dx-team/tsconfig.json",
"compilerOptions": {
"outDir": "dist/src",
"module": "es6",
"moduleResolution": "node",
"target": "es2020",
"jsx": "react-jsx"
},
"files": [
"./src/index.ts"
],
"exclude": [
"dist",
"node_modules",
"**/*.test.ts"
]
}
License
This project is licensed under the MIT license. See
the LICENSE file for more info.