mirror of
https://github.com/selfxyz/self.git
synced 2026-02-21 03:00:36 -05:00
* fix: circuit tests and tsconfigs * fix-ci: downgrade typescript version * fix: yarn.lock * fix: linting in common
25 lines
502 B
JSON
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"
|
|
]
|
|
}
|