mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-07 22:53:55 -05:00
35 lines
986 B
JSON
35 lines
986 B
JSON
{
|
|
"ts-node": {
|
|
// Do not forget to `npm i -D tsconfig-paths`
|
|
"require": ["tsconfig-paths/register"],
|
|
"files": true
|
|
},
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["vitest/globals"],
|
|
"typeRoots": ["./node_modules/@types", "./src/@types", "./node_modules"],
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"lib": ["esnext"],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@app/*": ["./src/*"],
|
|
"@bdd_routes/*": ["./src/server/routes/bdd/*"]
|
|
},
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src/**/*", "scripts/**/*", "e2e-test/**/*", "./.eslintrc.js", "./tsup.config.js"],
|
|
"exclude": ["node_modules"]
|
|
}
|