35 lines
927 B
JSON
35 lines
927 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"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
|
|
}
|
|
]
|
|
},
|
|
"exclude": ["node_modules", ".next", "out", "public/datafeeds"],
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js",
|
|
"components/AccountSelect.jsx"
|
|
]
|
|
}
|