remnantchat/tsconfig.json

22 lines
532 B
JSON
Raw Normal View History

2022-08-09 02:04:37 +00:00
{
"compilerOptions": {
"target": "es2015",
2022-08-09 02:04:37 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
2022-09-19 16:51:49 +00:00
"moduleResolution": "NodeNext",
2022-08-09 02:04:37 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-08-16 14:21:33 +00:00
"jsx": "react-jsx",
"baseUrl": "src"
2022-08-09 02:04:37 +00:00
},
"include": ["src"]
}