40 lines
888 B
JSON
40 lines
888 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"],
|
|
"extend": {
|
|
"animation": {
|
|
"pulse-slow": "pulse 6s ease-in-out infinite"
|
|
},
|
|
"keyframes": {
|
|
"pulse": {
|
|
"0%, 100%": { "opacity": "1" },
|
|
"50%": { "opacity": "0.6" }
|
|
}
|
|
}
|
|
}
|
|
}
|