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/apps/meteor/tsconfig.json

50 lines
1.2 KiB

{
"extends": "@rocket.chat/tsconfig/base.json",
"compilerOptions": {
"target": "es2018",
"module": "esNext",
"lib": ["esnext", "dom"],
"allowJs": true,
"checkJs": false,
"jsx": "react-jsx",
"noEmit": true,
/* Strict Type-Checking Options */
"strictPropertyInitialization": false,
/* Additional Checks */
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
/* Module Resolution Options */
"baseUrl": ".",
"paths": {
/* Support absolute /imports/* with a leading '/' */
"/*": ["*"],
"meteor/*": ["./node_modules/@types/meteor/*", ".meteor/local/types/packages.d.ts"],
"swiper/modules/index.mjs": ["./node_modules/swiper/types/modules/index.d.ts"],
"swiper/swiper-react.mjs": ["./node_modules/swiper/swiper-react.d.ts"],
},
"preserveSymlinks": true,
// "sourceMap": true,
// "declaration": true,
// "removeComments": false,
// "emitDecoratorMetadata": true,
// "experimentalDecorators": true,
},
"include": ["./**/*", "./.storybook/**/*", "./jest.config.ts", "./.scripts/**/*"],
"exclude": [
"**/node_modules/**",
"./.meteor/**",
"./imports/client/**",
"**/dist/**",
"./public/**",
// "./ee/server/services/**"
],
"ts-node": {
"files": false,
"swc": true,
},
}