mirror of
https://github.com/erhant/circomkit.git
synced 2026-05-05 03:00:37 -04:00
22 lines
571 B
JSON
22 lines
571 B
JSON
{
|
|
"extends": "./node_modules/gts/tsconfig-google.json",
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"rootDir": ".",
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["src/**/*.ts", "tests/**/*.ts", "types/**/*.ts"],
|
|
"exclude": ["node_modules", "build", "dist", "ptau"]
|
|
}
|