20 lines
411 B
JSON
20 lines
411 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
// "module": "nodenext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"outDir": "dist"
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
]
|
||
|
}
|