aboutsummaryrefslogtreecommitdiffstats
path: root/jsconfig.json
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-10-29 15:18:30 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-11-03 10:54:48 +0200
commitb03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17 (patch)
treeefc0ce6823ab8611d9c6a0bf27ecdbd124638b73 /jsconfig.json
downloadhousing-b03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17.tar.zst
Initial commit
Diffstat (limited to 'jsconfig.json')
-rw-r--r--jsconfig.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/jsconfig.json b/jsconfig.json
new file mode 100644
index 0000000..dbb9809
--- /dev/null
+++ b/jsconfig.json
@@ -0,0 +1,35 @@
+{
+ "compilerOptions": {
+ "allowJs": true,
+ "baseUrl": ".",
+ "checkJs": true,
+ "lib": ["ESNext", "Dom", "ES2023", "ES7"],
+ "module": "ESNext",
+ "noFallthroughCasesInSwitch": true,
+ "noImplicitAny": true,
+ "noImplicitReturns": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "paths": {
+ "dom": ["./app/dom.js"],
+ "geom": ["./app/geometry.js"],
+ "models": ["./app/models.js"],
+ "svg": ["./app/svg.js"]
+ },
+ "rootDirs": ["."],
+ "skipLibCheck": false,
+ "sourceMap": true,
+ "strict": true,
+ "strictBindCallApply": true,
+ "strictBuiltinIteratorReturn": true,
+ "strictFunctionTypes": true,
+ "strictNullChecks": true,
+ "strictPropertyInitialization": true,
+ "target": "esnext"
+ },
+ "html.format.enable": false,
+ "include": ["app/*.js", "server.js"],
+ "javascript.format.enable": false,
+ "json.format.enable": false,
+ "typescript.format.enable": false
+}