Files
self/sdk/tsconfig.json
2024-07-26 08:35:08 +02:00

26 lines
503 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": [
"index.ts",
"src/**/*",
"common/**/*",
"circuits/**/*",
"circuits/**/*.json"
],
"exclude": [
"node_modules",
"**/__tests__/*",
"dist",
"common/src/utils/csca.ts"
]
}