rsnext/examples/with-emotion-swc/tsconfig.json
John Daly f544a90ca4
Update with-emotion-swc to use TypeScript (#38744)
* Updating the with-emotion-swc example to use TypeScript

* Updating dependencies

* Adding @types packages for react and react-dom

* Adding @types/node
2022-07-18 13:25:33 -05:00

21 lines
551 B
JSON

{
"compilerOptions": {
"target": "es5",
"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",
"incremental": true,
"jsxImportSource": "@emotion/react"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}