2019-04-21 19:17:15 +09:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-07-09 15:46:11 +09:00
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2019-04-21 19:17:15 +09:00
|
|
|
"allowJs": true,
|
2019-07-09 15:46:11 +09:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2019-04-21 19:17:15 +09:00
|
|
|
"noEmit": true,
|
2020-02-12 02:43:14 +09:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2019-04-21 19:17:15 +09:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2019-04-21 19:22:18 +09:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
2019-07-09 15:46:11 +09:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2020-02-09 05:53:07 +09:00
|
|
|
"jsx": "preserve",
|
|
|
|
"downlevelIteration": true
|
2019-07-09 15:46:11 +09:00
|
|
|
},
|
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
2019-04-21 19:17:15 +09:00
|
|
|
}
|