20 lines
375 B
JSON
20 lines
375 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"skipLibCheck": true,
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "bundler",
|
||
|
"target": "ESNext",
|
||
|
"isolatedModules": true,
|
||
|
"esModuleInterop": true,
|
||
|
"outDir": "dist",
|
||
|
"lib": [ "esnext" ],
|
||
|
"types": [ "node" ],
|
||
|
"baseUrl": "./",
|
||
|
"rootDir": "src"
|
||
|
},
|
||
|
"exclude": [ "node_modules" ],
|
||
|
"include": [
|
||
|
"src"
|
||
|
]
|
||
|
}
|