mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-07 15:03:53 +05:00
20 lines
506 B
JSON
20 lines
506 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["ESNext"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "hono/jsx",
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.json"],
|
|
"exclude": ["node_modules"]
|
|
}
|