iris-messenger/tsconfig.json
Fernando López Guevara aaa421c92b
added prettier, eslint, spanish translations (#161)
* fix: handle missing user on metion properly

* prettier eslint

* use dep from npm registry

* fix: send from to sub callback
2022-11-11 08:00:32 +02:00

21 lines
544 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"outDir": "dist",
"jsx": "react-jsx",
"jsxImportSource": "preact",
"target": "es2020",
"module": "es2020",
"moduleResolution": "node",
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"react": ["./node_modules/preact/compat/"],
"react-dom": ["./node_modules/preact/compat/"],
"*": ["./types/*"]
},
"typeRoots": ["./node_modules/@types", "./src/types"]
},
"exclude": ["node_modules", "tests/**/*.ts", "iris-lib/test/*.ts"]
}