mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
19 lines
521 B
JSON
19 lines
521 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"outDir": "./dist",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node16",
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["index.ts", "src/**/*", "circuits/**/*", "circuits/**/*.json", "utils/utils.ts"],
|
|
"exclude": ["node_modules", "**/__tests__/*", "dist"]
|
|
}
|