83a598907f
* Debug logging * Yield based logging * Reintroduce non-dummy task manager, try add counting for BatchMessageSender, a couple of compiler target introductions on use statements. * Fixed time runtime err * Uncomment forgetme/rememberme * remove diffs from debug * missed commented out forgetme * yet more forgetme comments * * Added missing clientreqestsender clone to wasm client to stop premature drop & busyloop * Removed hacky mem::forget fix * Remove debug panic_hook * Conditional import + use of wasm_utils::console_log * add wasm_util dep * Commenting out or removing debug logging * Remove missed comment * cleanup gitignore * clippy * update go version in ci * removed unused deps * add clippy ignore * remove mixfetch from ci build * add minifetch fix * comment out unused ts builds * stop contract clients killing ci for the moment * wasm target locking for imports * Either remove console_log! macro or introduce cfg(debug_assertions) * downgrade netlink * debug assertions for console_log import * modify config logging (debug -> normal) * remove clone for client_request_sender + grab directly in struct creation * reintroduce debug print for config in debug mode * remove ood / unused custom topology from worker example file * clippy * clippy - ignore todo() tests * modified humantime test in line with new parsing rules
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"lib": ["es2021", "dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"jsx": "react-jsx",
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@assets/*": ["../assets/*"]
|
|
},
|
|
/*
|
|
Fix for:
|
|
> @nymproject/types:build
|
|
|
|
@nymproject/types: $ tsc --noEmit false
|
|
@nymproject/types: error TS2688: Cannot find type definition file for 'minimatch'.
|
|
@nymproject/types: The file is in the program because:
|
|
@nymproject/types: Entry point for implicit type library 'minimatch'
|
|
error Command failed with exit code 2.
|
|
|
|
from https://github.com/strapi/strapi/issues/23859#issuecomment-3047080365
|
|
|
|
Max: need to look into proper fix / if this breaks something else
|
|
*/
|
|
"typeRoots": ["./node_modules/@types/*"]
|
|
},
|
|
"exclude": [
|
|
"jest.config.js",
|
|
"webpack.config.js",
|
|
"webpack.prod.js",
|
|
"webpack.common.js",
|
|
"node_modules",
|
|
"**/node_modules",
|
|
"dist",
|
|
"**/dist",
|
|
"scripts",
|
|
"jest",
|
|
"__tests__",
|
|
"**/__tests__",
|
|
"__jest__",
|
|
"**/__jest__",
|
|
"config/*"
|
|
]
|
|
}
|