25 lines
558 B
JSON
25 lines
558 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": true,
|
|
"allowJs": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|