mirror of
https://github.com/CryptKeeperZK/crypt-keeper-extension.git
synced 2026-01-09 14:07:57 -05:00
* chore: move common types to `@cryptkeeper/types` * fix: run build for check workflow * chore: add prettier ignore * fix: e2e * chore: add missing deps for demo * chore: use ignore path for prettier --------- Co-authored-by: 0xmad <0xmad@users.noreply.github.com>
33 lines
761 B
JSON
33 lines
761 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["es2020"],
|
|
"experimentalDecorators": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"strictPropertyInitialization": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": true,
|
|
"incremental": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"stripInternal": true
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"noEmit": false
|
|
},
|
|
"esm": true,
|
|
"swc": true
|
|
}
|
|
}
|