noogle/website/tsconfig.json

44 lines
750 B
JSON
Raw Normal View History

2022-11-26 12:36:08 +03:00
{
2023-12-07 19:56:23 +03:00
2022-11-26 12:36:08 +03:00
"compilerOptions": {
"target": "es6",
2023-12-01 12:54:02 +03:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2022-11-26 12:36:08 +03:00
"allowJs": true,
2023-01-25 17:54:44 +03:00
"noUnusedLocals": true,
2022-11-26 12:36:08 +03:00
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2023-12-01 12:54:02 +03:00
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
2022-11-26 12:36:08 +03:00
},
2023-12-01 12:54:02 +03:00
"include": [
"next-env.d.ts",
2023-12-07 19:56:23 +03:00
"src/**/*.ts",
"src/**/*.tsx",
2023-12-01 12:54:02 +03:00
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"result"
]
2022-11-26 12:36:08 +03:00
}