mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-04-07 18:06:50 -05:00
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/`.
16 lines
332 B
JSON
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/*"
|
|
]
|
|
}
|