task-runtime-ai / tsconfig.json
harshlocham's picture
Refactor code structure for improved readability and maintainability
f0f2f77
Raw
History Blame Contribute Delete
741 Bytes
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
"jsx": "preserve",
"skipLibCheck": true,
"noEmit": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"plugins": [
{
"name": "next"
}
],
"target": "ES2017",
"allowJs": true,
"strict": false,
"incremental": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}