2019-05-13 08:56:06 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
2019-05-13 12:00:56 +00:00
|
|
|
"noImplicitAny": false,
|
2019-05-25 11:36:19 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"jsx": "preserve",
|
2019-11-18 15:52:07 +00:00
|
|
|
"target": "es2018",
|
2019-07-12 04:26:10 +00:00
|
|
|
"module": "esnext",
|
2019-05-13 08:56:06 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": true,
|
2019-06-05 06:47:05 +00:00
|
|
|
"outDir": "dist",
|
2019-05-13 08:56:06 +00:00
|
|
|
"baseUrl": ".",
|
2019-07-12 04:26:10 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
2019-10-28 16:19:11 +00:00
|
|
|
"dom.iterable",
|
2019-07-12 04:26:10 +00:00
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2022-12-31 06:29:41 +00:00
|
|
|
"noEmit": false,
|
|
|
|
"incremental": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
]
|
2019-05-13 08:56:06 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2024-07-09 03:29:32 +00:00
|
|
|
"api-legacy",
|
2019-11-18 15:52:07 +00:00
|
|
|
"libs",
|
2019-05-14 01:15:16 +00:00
|
|
|
"index.ts",
|
2019-10-04 13:44:20 +00:00
|
|
|
"components",
|
2022-12-31 06:29:41 +00:00
|
|
|
"pages",
|
2022-12-31 08:23:34 +00:00
|
|
|
"next-env.d.ts",
|
|
|
|
".next/types/**/*.ts"
|
2019-07-12 04:26:10 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
2019-05-13 08:56:06 +00:00
|
|
|
]
|
|
|
|
}
|