bbgo_origin/apps/frontend/tsconfig.json

31 lines
558 B
JSON
Raw Permalink Normal View History

2021-01-22 16:50:23 +00:00
{
"compilerOptions": {
"target": "es5",
2022-06-20 14:08:08 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2021-01-22 16:50:23 +00:00
"allowJs": true,
"skipLibCheck": true,
2021-01-24 06:07:44 +00:00
"strict": false,
2021-01-22 16:50:23 +00:00
"forceConsistentCasingInFileNames": true,
2021-01-24 06:07:44 +00:00
"noEmit": true,
"esModuleInterop": true,
2021-01-22 16:50:23 +00:00
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2022-06-20 14:08:08 +00:00
"jsx": "preserve",
"incremental": true
2021-01-22 16:50:23 +00:00
},
2022-06-20 14:08:08 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
2021-01-22 16:50:23 +00:00
}