mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-29 02:06:34 +02:00
32 lines
835 B
JSON
32 lines
835 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "es2017"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": false,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"~/*": ["./*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "**/.*/", "**/*.js"],
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
|
}
|