2022-04-24 22:36:47 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-02-09 22:57:00 +01:00
|
|
|
"target": "es2017",
|
2022-05-29 18:47:12 +02:00
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
"esnext"
|
|
|
|
|
],
|
2022-04-24 22:36:47 +02:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
2022-12-24 11:11:51 +01:00
|
|
|
"forceConsistentCasingInFileNames": false,
|
2022-04-24 22:36:47 +02:00
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
2023-05-16 15:46:14 +09:00
|
|
|
"incremental": true,
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
2023-06-10 09:57:44 +02:00
|
|
|
],
|
|
|
|
|
"paths": {
|
|
|
|
|
"~/*": ["./src/*"]
|
|
|
|
|
},
|
2022-04-24 22:36:47 +02:00
|
|
|
},
|
2022-05-29 18:47:12 +02:00
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
2023-06-09 22:47:54 +02:00
|
|
|
"next.config.js",
|
2023-05-16 15:46:14 +09:00
|
|
|
".next/types/**/*.ts"
|
2022-05-29 18:47:12 +02:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules"
|
2023-10-08 12:10:48 +02:00
|
|
|
],
|
|
|
|
|
"ts-node": {
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "nodenext",
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-06-07 21:11:32 +02:00
|
|
|
}
|