20 lines
396 B
JSON
20 lines
396 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs",
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"outDir": "dist",
|
||
|
|
"sourceMap": true,
|
||
|
|
"strict": true,
|
||
|
|
"target": "es2017",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"forceConsistentCasingInFileNames": true
|
||
|
|
},
|
||
|
|
"compileOnSave": true,
|
||
|
|
"include": [
|
||
|
|
"src/**/*"
|
||
|
|
]
|
||
|
|
}
|