Files
Minikura/apps/web/tsconfig.json

42 lines
905 B
JSON
Raw Normal View History

2024-09-21 13:28:02 +07:00
{
"compilerOptions": {
2026-02-13 15:52:13 +07:00
"lib": ["ESNext", "DOM"],
2024-09-21 13:28:02 +07:00
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
2026-02-13 15:52:13 +07:00
"jsx": "react-jsx",
2024-09-21 13:28:02 +07:00
"allowJs": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"incremental": true,
"esModuleInterop": true,
"resolveJsonModule": true,
2026-02-13 15:52:13 +07:00
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
2024-09-21 13:28:02 +07:00
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
2026-02-13 15:52:13 +07:00
"**/*.tsx",
"next.config.mjs",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
2024-09-21 13:28:02 +07:00
}