17 lines
315 B
JSON
17 lines
315 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "CommonJS",
|
||
|
|
"moduleResolution": "Node",
|
||
|
|
"outDir": "dist",
|
||
|
|
"rootDir": "src",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts"
|
||
|
|
]
|
||
|
|
}
|