slidestr/tsconfig.json

24 lines
560 B
JSON
Raw Normal View History

2023-07-15 21:23:22 +00:00
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "ESNext"],
2024-03-05 14:13:03 +00:00
"allowJs": false,
2023-07-15 21:23:22 +00:00
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}