From be78280c669a04c112afaf1801f22ed2eec7c55a Mon Sep 17 00:00:00 2001 From: Martin Kagamino Lehoux Date: Sun, 16 Aug 2026 13:19:22 +0200 Subject: refactor(web): establish JavaScript module tooling --- tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..6ad150d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "lib": ["DOM", "ES2022"], + "module": "ESNext", + "moduleResolution": "Bundler", + "noEmit": true, + "strict": false, + "skipLibCheck": true, + "target": "ES2022", + "types": ["leaflet", "node"] + }, + "include": ["web/static/**/*.js", "web/static_test/**/*.js", "web/types/**/*.d.ts"] +} -- cgit v1.2.3