22 lines
493 B
JSON
22 lines
493 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es6",
|
||
|
"declaration": true,
|
||
|
"strict": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"jsx": "react",
|
||
|
"outDir": "./lib",
|
||
|
"rootDir": ".",
|
||
|
"composite": true,
|
||
|
"types": []
|
||
|
},
|
||
|
"include": [
|
||
|
"./index.ts"
|
||
|
]
|
||
|
}
|