Skip to content

Commit

Permalink
✨ allow unused local and parameters for easy build.ghpages build
Browse files Browse the repository at this point in the history
  • Loading branch information
slooi committed Sep 26, 2024
1 parent 4fe3e21 commit 5bd84fa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}
"include": [
"src"
]
}
2 changes: 1 addition & 1 deletion tsconfig.app.tsbuildinfo
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/webgl.ts"],"version":"5.6.2"}
{"root":["./src/app.tsx","./src/userinputhandler.ts","./src/m4.ts","./src/main.tsx","./src/tests.test.ts","./src/vite-env.d.ts","./src/webgl.ts"],"version":"5.6.2"}

0 comments on commit 5bd84fa

Please sign in to comment.