23 lines
484 B
JSON
23 lines
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "nodenext",
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"outFile": "build/index.ts",
|
|
"esModuleInterop": true,
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|