From b03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17 Mon Sep 17 00:00:00 2001 From: Petri Hienonen Date: Wed, 29 Oct 2025 15:18:30 +0200 Subject: Initial commit --- jsconfig.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 jsconfig.json (limited to 'jsconfig.json') 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 +} -- cgit v1.2.3-70-g09d2