AniX/tsconfig.json
Radiquum a4ecc27874
Some checks failed
Build and Publish 'anix-api-prox' to Docker Hub / publish (push) Has been cancelled
Build and Publish 'anix' to Docker Hub / publish (push) Has been cancelled
try fix styles
2025-08-28 22:46:15 +05:00

37 lines
813 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.mjs"
],
"exclude": ["node_modules", "player-parser", "api-prox"]
}