Archived
26 lines
539 B
JSON
26 lines
539 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"allowJs": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"composite": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"module": "commonjs",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"outDir": "dist",
|
||
|
|
"preserveConstEnums": true,
|
||
|
|
"removeComments": false,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"lib/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules"
|
||
|
|
]
|
||
|
|
}
|