iris-messenger/tsconfig.json
2022-06-19 12:58:14 +03:00

22 lines
452 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"rootDir": "src",
"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/"]
}
},
"exclude": [
"tests/**/*.ts"
]
}