Some checks failed
CI / rustfmt (push) Successful in 17s
CI / wasm build (push) Successful in 1m15s
CI / clippy (push) Successful in 1m30s
CI / test (push) Successful in 1m48s
CI / example (push) Successful in 1m32s
CI / duplicate code (push) Failing after 29s
CI / web client (push) Failing after 30s
CI / cargo-machete (push) Successful in 1m7s
CI / cargo-deny (push) Failing after 2m23s
(feat): add pq key generation to wasm (qol): update gitignores
28 lines
628 B
JSON
28 lines
628 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": false,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": ".",
|
|
"types": ["node"],
|
|
"ignoreDeprecations": "6.0",
|
|
"paths": {
|
|
"mtp/raw": ["src/raw/index.ts"],
|
|
"mtp/type-map": ["src/type-map/index.ts"]
|
|
},
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": [
|
|
"src/raw/**/*.ts",
|
|
"src/sdk/**/*.ts",
|
|
"src/type-map/**/*.ts",
|
|
"src/vite/**/*.ts"
|
|
]
|
|
}
|