From 8d60c7f93407988ee0232ea90980028f299cb0f3 Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 13:39:28 +0200 Subject: Initial Commit --- web/tsconfig.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web/tsconfig.json (limited to 'web/tsconfig.json') diff --git a/web/tsconfig.json b/web/tsconfig.json new file mode 100644 index 0000000..ac0731c --- /dev/null +++ b/web/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "target": "ES2020", + "useDefineForClassFields": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "allowJs": true, + "esModuleInterop": true, + "baseUrl": ".", + "paths": { + "@/*": ["src/*"], + "@typerpunk/wasm": ["../crates/wasm/pkg"] + } + }, + "include": ["src", "../crates/wasm/pkg"], + "references": [{ "path": "./tsconfig.node.json" }] +} \ No newline at end of file -- cgit v1.2.3