27 lines
430 B
JSON
27 lines
430 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"module": "es6",
|
||
|
"outDir": "dist",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"declaration": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"sourceMap": true,
|
||
|
"jsx": "react"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/*.ts",
|
||
|
"src/*.tsx"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|