mirror of
https://github.com/selfxyz/self.git
synced 2026-02-21 03:00:36 -05:00
30 lines
684 B
JSON
30 lines
684 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"outDir": "./dist",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@common/*": ["../../common/src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"index.ts",
|
|
"src/**/*",
|
|
"../../common/src/**/*",
|
|
"circuits/**/*",
|
|
"circuits/**/*.json",
|
|
"utils/utils.ts"
|
|
],
|
|
"exclude": ["node_modules", "**/__tests__/*", "dist", "common/src/utils/csca.ts"]
|
|
}
|