22 lines
411 B
JSON
22 lines
411 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"target": "esnext",
|
|
"moduleResolution": "nodenext",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"esModuleInterop": true,
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"rootDir": "./src"
|
|
},
|
|
"include": [
|
|
"./src"
|
|
]
|
|
}
|