mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
666 B
JSON
26 lines
666 B
JSON
3 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2021",
|
||
|
"module": "commonjs",
|
||
|
"lib": ["dom", "es2021"],
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"jsx": "react-jsx",
|
||
|
"strict": true,
|
||
|
"pretty": true,
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": "./src",
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"allowJs": true,
|
||
|
"outDir": "release/app/dist"
|
||
|
},
|
||
|
"exclude": ["test", "release/build", "release/app/dist", ".erb/dll"]
|
||
|
}
|