InvestWeb/tsconfig.json

26 lines
587 B
JSON
Raw Permalink Normal View History

2022-11-23 17:20:36 -05:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
},
2023-02-07 04:48:13 -05:00
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
2022-11-23 17:20:36 -05:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}