AniX/tsconfig.json
Radiquum 563af656a4
Some checks are pending
V3 Preview Deployment / Deploy-Preview (push) Waiting to run
feat: add fast-forward button to player controls
2025-03-16 15:54:30 +05:00

37 lines
783 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"noEmit": true,
"incremental": true,
"module": "esnext",
"esModuleInterop": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"baseUrl": "app",
"paths": {
"#/components/*": ["components/*"],
"#/api/*": ["api/*"],
"#/store/*": ["store/*"],
"#/hooks/*": ["hooks/*"],
"#/pages/*": ["pages/*"]
}
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx",
"next.config.js"
],
"exclude": ["node_modules"]
}