2021-12-08 03:38:31 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
2022-09-28 02:04:44 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2021-12-08 03:38:31 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
2022-09-28 02:04:44 +00:00
|
|
|
"importHelpers": true,
|
|
|
|
"incremental": true
|
2021-12-08 03:38:31 +00:00
|
|
|
},
|
2022-09-28 02:04:44 +00:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
2022-10-05 03:41:59 +00:00
|
|
|
"lib/slug.js"
|
2022-09-28 02:04:44 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2021-12-08 03:38:31 +00:00
|
|
|
}
|