1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 02:12:38 +01:00
client/tsconfig.json

28 lines
659 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-09-01 03:02:31 +02:00
"target": "ES2020",
2023-09-06 20:55:23 +02:00
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
2023-09-06 20:55:23 +02:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
2023-09-06 20:55:23 +02:00
/* Linting */
"strict": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
2023-09-06 20:55:23 +02:00
"include": ["src", "src/custom.d.ts"],
"references": [{ "path": "./tsconfig.node.json" }]
}