pokemon-showdown-client/tsconfig.json
Guangcong Luo 26f78dcce6 Add Preact dependency
Preact is currently unused in the client, but will be used in an
upcoming rewrite. This adds the foundation to support `.tsx` files in
`src/`.
2018-10-16 14:53:27 -05:00

16 lines
332 B
JSON

{
"compilerOptions": {
"lib": ["dom", "es6", "es2016.array.include", "es2017.object"],
"noEmit": true,
"target": "esnext",
"module": "None",
"jsx": "preserve",
"strict": true
},
"types": ["node"],
"include": [
"./js/lib/preact.d.ts",
"./src/*"
]
}