iris-messenger/tsconfig.json

21 lines
544 B
JSON
Raw Normal View History

{
"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"]
}