Add IntelliJ IDEA project settings, TypeScript configuration, and pnpm lock file. Updated `package.json` with new dependencies and refactored API handler to TypeScript.
26 lines
534 B
JSON
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"
|
|
]
|
|
} |