30 lines
693 B
JSON
30 lines
693 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"sourceMap": false,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"moduleResolution": "Node",
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"lib/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
} |