mango-ui-v3/tsconfig.json

21 lines
557 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",
2022-01-16 09:12:59 -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,
"jsx": "preserve",
2022-01-14 10:04:04 -08:00
"isolatedModules": true,
2022-03-18 11:41:23 -07:00
"incremental": true
2021-03-26 09:44:55 -07:00
},
2022-01-16 09:12:59 -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
}