UNPKG

686 BJSONView Raw
1{
2 "include": [
3 "lib/**/*.ts",
4 "lib/**/*.tsx",
5 "../lib/types.d.ts"
6 ],
7 "exclude": [
8 "lib/admin/extension.tsx"
9 ],
10 "compilerOptions": {
11 "outDir": "../build/public/lib",
12 "lib": ["es5", "dom", "es2015.promise", "es2015.iterable"],
13 "target": "es5",
14 "module": "amd",
15 "noImplicitAny": true,
16 "sourceMap": true,
17 "types": [
18 "jquery",
19 "bootstrap",
20 "preact",
21 "socket.io"
22 ],
23
24 "jsx": "react",
25 "jsxFactory": "h",
26
27 "moduleResolution": "node",
28 "baseUrl": ".",
29 "paths": {
30 "emoji-dialog": ["lib/emoji-dialog"],
31 "emoji": ["lib/emoji"]
32 }
33 },
34 "typeAcquisition": {
35 "enable": false
36 }
37}
\No newline at end of file