Files
self/common/tsconfig.json
Nesopie f4f5903b40 fix: circuit tests and tsconfigs (#621)
* fix: circuit tests and tsconfigs

* fix-ci: downgrade typescript version

* fix: yarn.lock

* fix: linting in common
2025-06-13 14:16:23 +02:00

25 lines
502 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "nodenext",
"declaration": true,
"declarationDir": "./dist/esm",
"outDir": "./dist/esm",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "NodeNext",
"baseUrl": "./",
"composite": true,
},
"include": [
"src/**/*", "index.ts",
],
"exclude": [
"dist",
"node_modules"
]
}