rsnext/examples/with-ably/tsconfig.json
Jo Franchetti bbffaea755
Adding with-ably example for realtime messaging in next apps (#37319)
* update from latest canary

* lint-fix
2022-06-29 12:52:04 +02:00

20 lines
510 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"isolatedModules": true,
"jsx": "preserve",
"moduleResolution": "node",
"resolveJsonModule": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}