mango-ui-v2/tsconfig.json

26 lines
598 B
JSON
Raw Normal View History

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,
"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/MangoSrmAccountSelector.jsx"
2021-04-09 17:01:00 -07:00
]
2021-03-26 09:44:55 -07:00
}