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.
44 lines
973 B
JSON
44 lines
973 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./client/dist/",
|
|
"composite": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2020",
|
|
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020.String",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
// "strict": true,
|
|
// "noUnusedLocals": true,
|
|
// "noUnusedParameters": true,
|
|
// "noFallthroughCasesInSwitch": true
|
|
|
|
// "allowJs": true,
|
|
// "esModuleInterop": true,
|
|
// "downlevelIteration": true,
|
|
// "experimentalDecorators": true,
|
|
// "allowSyntheticDefaultImports": true,
|
|
},
|
|
"exclude": [
|
|
"server",
|
|
"relay",
|
|
"node_modules"
|
|
]
|
|
}
|