Files
profi-frontend/tsconfig.node.json

25 lines
598 B
JSON
Raw Normal View History

2025-05-19 19:24:27 +03:00
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
2025-05-30 19:32:58 +03:00
"isolatedModules": true,
2025-05-19 19:24:27 +03:00
"moduleDetection": "force",
"noEmit": true,
/* Linting */
2025-06-03 03:04:09 +03:00
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false,
"noUncheckedSideEffectImports": false
2025-05-19 19:24:27 +03:00
},
"include": ["vite.config.ts"]
}