19 lines
345 B
JSON
19 lines
345 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"outDir": "dist",
|
||
|
"sourceMap": true,
|
||
|
"target": "esnext",
|
||
|
"module": "commonjs",
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noImplicitAny": false,
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": [
|
||
|
"./*.js",
|
||
|
"api/**/*.ts",
|
||
|
"src/**/*.ts"
|
||
|
]
|
||
|
}
|