2021-03-26 09:44:55 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-04-02 11:26:21 -07:00
|
|
|
"target": "es6",
|
2022-01-14 10:04:04 -08:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2021-03-26 09:44:55 -07:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2021-10-26 11:58:49 -07:00
|
|
|
"jsx": "preserve",
|
2022-01-14 10:04:04 -08:00
|
|
|
"isolatedModules": true,
|
|
|
|
"incremental": true
|
2021-03-26 09:44:55 -07:00
|
|
|
},
|
2022-01-14 10:04:04 -08:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
".next",
|
|
|
|
"out",
|
|
|
|
"public/datafeeds"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
"**/*.js"
|
|
|
|
]
|
2021-03-26 09:44:55 -07:00
|
|
|
}
|