The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/tsconfig.json

53 lines
1.1 KiB

{
"compilerOptions": {
"module": "CommonJS",
"target": "es2018",
"lib": ["esnext", "dom"],
"allowJs": true,
"checkJs": false,
"jsx": "react",
// "incremental": true,
"noEmit": true,
/* Strict Type-Checking Options */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
/* Module Resolution Options */
"baseUrl": ".",
"paths": {
/* Support absolute /imports/* with a leading '/' */
"/*": ["*"]
},
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"preserveSymlinks": true
// "sourceMap": true,
// "declaration": true,
// "removeComments": false,
// "emitDecoratorMetadata": true,
// "experimentalDecorators": true,
},
"exclude": [
"./.meteor/**",
"./packages/**",
"./imports/client**",
"**/dist/**",
// "./ee/server/services/**"
"node_modules"
],
"ts-node": {
"files": true
}
}