mirror of
https://github.com/selfxyz/self.git
synced 2026-01-13 08:37:55 -05:00
* chore: add TypeScript tooling * chore: remove unused tsconfig and migration script * update settings * add knip config * format * more reliable circuits tests * fix workflow * fix types * updates * ts updates * more updates * fix upgrade * fixes
25 lines
618 B
JSON
25 lines
618 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",
|
|
"types": ["node"],
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["index.ts", "src/**/*", "circuits/**/*", "circuits/**/*.json", "utils/utils.ts"],
|
|
"exclude": ["node_modules", "**/__tests__/*", "dist"],
|
|
"references": [
|
|
{
|
|
"path": "../../common"
|
|
}
|
|
]
|
|
}
|