24 lines
528 B
JSON
24 lines
528 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"declaration": true,
|
||
|
"strict": true,
|
||
|
"module": "esnext",
|
||
|
"target": "esnext",
|
||
|
"esModuleInterop": true,
|
||
|
"sourceMap": false,
|
||
|
"rootDir": "src",
|
||
|
"outDir": "dist",
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types",
|
||
|
],
|
||
|
"moduleResolution": "node",
|
||
|
"declarationMap": true,
|
||
|
"declarationDir": "dist",
|
||
|
"emitDeclarationOnly": false,
|
||
|
"allowJs": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
]
|
||
|
}
|