Spaces:
Paused
Paused
alessandro trinca tornidor
feat: add support for compiling a custom frontend using pnpm and nodejs v18 from debian packages
c13c67e
| { | |
| "compilerOptions": { | |
| "composite": true, | |
| "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | |
| "target": "ES2020", | |
| "useDefineForClassFields": true, | |
| "module": "ESNext", | |
| "lib": ["ES2020", "DOM", "DOM.Iterable"], | |
| "skipLibCheck": true, | |
| /* Bundler mode */ | |
| "moduleResolution": "bundler", | |
| "allowImportingTsExtensions": true, | |
| "resolveJsonModule": true, | |
| "isolatedModules": true, | |
| "moduleDetection": "force", | |
| "noEmit": true, | |
| "jsx": "preserve", | |
| /* Linting */ | |
| "strict": true, | |
| "noUnusedLocals": true, | |
| "noUnusedParameters": true, | |
| "noFallthroughCasesInSwitch": true | |
| }, | |
| "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"] | |
| } | |