mango-ui-v3/tsconfig.json

20 lines
532 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-10-27 08:41:06 -07: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,
"jsx": "preserve",
"isolatedModules": true
2021-03-26 09:44:55 -07:00
},
2021-10-27 08:41:06 -07:00
"exclude": ["node_modules", ".next", "out", "public/datafeeds"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"]
2021-03-26 09:44:55 -07:00
}