mango-ui-v2/tsconfig.json

35 lines
927 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",
"jsxImportSource": "@emotion/react",
"plugins": [
{
"name": "typescript-xwind-plugin",
"config": ".../User/.../tailwind.config.js", //Absolute filepath to tailwind config
"ignoreErrors": null, //regex pattern string or null
"tags": ["tw", "xw"] //tags that trigger xwind plugin
}
]
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",
"components/AccountSelect.jsx"
]
2021-03-26 09:44:55 -07:00
}