mirror of
https://github.com/faa/zk-keeper.git
synced 2026-01-08 21:58:08 -05:00
24 lines
591 B
JSON
24 lines
591 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@src/*": ["src/*"]
|
|
},
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"rootDir": "./src",
|
|
"outDir": "dist/js",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"lib": ["es2020", "dom"],
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": ["src"]
|
|
}
|