Files
parcer/tsconfig.json

23 lines
578 B
JSON
Raw Normal View History

2024-10-24 18:58:26 +05:30
{
"compilerOptions": {
2024-10-24 22:23:41 +05:30
"target": "esnext",
2024-10-24 18:58:46 +05:30
"lib": ["dom", "dom.iterable", "esnext"],
2024-10-24 18:58:26 +05:30
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
2024-11-01 08:28:10 +05:30
"module": "esnext",
2024-10-24 18:58:26 +05:30
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
2024-11-01 08:28:10 +05:30
"types": ["vite/client"],
2024-10-24 18:58:26 +05:30
"outDir": "./build"
},
2024-11-01 08:28:10 +05:30
"include": ["src", "vite-env.d.ts"]
2024-10-24 18:58:26 +05:30
}