forecast/tsconfig.json
Mathis f87e388ddd
feat(build): add project configuration files and dependencies
Add IntelliJ IDEA project settings, TypeScript configuration, and pnpm lock file. Updated `package.json` with new dependencies and refactored API handler to TypeScript.
2024-09-27 11:37:21 +02:00

26 lines
534 B
JSON

{
"compilerOptions": {
"resolveJsonModule": true,
"target": "ES6",
"module": "CommonJS",
"lib": [
"DOM",
"ES6"
],
"jsx": "react",
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"exclude": [
"node_modules",
"dist"
]
}