diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2025-10-29 15:18:30 +0200 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2025-11-03 10:54:48 +0200 |
| commit | b03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17 (patch) | |
| tree | efc0ce6823ab8611d9c6a0bf27ecdbd124638b73 /jsconfig.json | |
| download | housing-b03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17.tar.zst | |
Initial commit
Diffstat (limited to 'jsconfig.json')
| -rw-r--r-- | jsconfig.json | 35 |
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 +} |
