Voicemeeter-remote-frontend/tsconfig.json
Maksym 7a65c76757 modified: package-lock.json
modified:   package.json
	modified:   src/app/component/Bus.tsx
	new file:   src/app/component/BusesList.tsx
	modified:   src/app/component/Strip.tsx
	modified:   src/app/component/StripBusOutput.tsx
	deleted:    src/app/globals.css
	modified:   src/app/page.tsx
	new file:   src/utils/DetectMobile.ts
	modified:   src/utils/EventCounter.ts
	new file:   src/utils/Range.ts
	modified:   tsconfig.json
2024-08-07 21:39:58 +02:00

28 lines
602 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"target": "ES2023",
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}