2019-03-03 16:13:57 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-08-24 09:59:59 +02:00
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
2020-01-05 17:34:03 +01:00
|
|
|
"jsx": "preserve",
|
2020-07-23 20:07:28 +02:00
|
|
|
"rootDir": ".",
|
2019-08-24 09:59:59 +02:00
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"moduleResolution": "node",
|
2020-01-05 17:34:03 +01:00
|
|
|
"esModuleInterop": true,
|
2020-07-23 20:07:28 +02:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2020-01-05 17:34:03 +01:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true
|
|
|
|
},
|
2020-07-23 20:07:28 +02:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
2020-01-05 17:34:03 +01:00
|
|
|
}
|