aboutsummaryrefslogtreecommitdiffstats
path: root/jsconfig.json
diff options
context:
space:
mode:
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
+}