2021-03-26 09:44:55 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-04-02 11:26:21 -07:00
|
|
|
"target": "es6",
|
2021-03-26 09:44:55 -07:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-04-13 09:51:42 -07:00
|
|
|
"jsx": "preserve"
|
2021-03-26 09:44:55 -07:00
|
|
|
},
|
2021-04-10 08:52:31 -07:00
|
|
|
"exclude": ["node_modules", ".next", "out", "public/datafeeds"],
|
2021-04-09 17:01:00 -07:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
"**/*.js",
|
2021-04-12 20:39:08 -07:00
|
|
|
"components/AccountSelect.jsx",
|
|
|
|
"components/MangoSrmAccountSelector.jsx"
|
2021-04-09 17:01:00 -07:00
|
|
|
]
|
2021-03-26 09:44:55 -07:00
|
|
|
}
|