2024-10-14 06:49:01 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"maxNodeModuleJsDepth": 10,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
2024-10-18 05:45:25 +00:00
|
|
|
// "skipLibCheck": true,
|
2024-10-14 06:49:01 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"incremental": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"moduleResolution": "node",
|
2024-10-18 05:45:25 +00:00
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./dump/tsc",
|
2024-10-14 06:49:01 +00:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"engine",
|
|
|
|
"functions",
|
|
|
|
"types",
|
|
|
|
"users",
|
|
|
|
"utils",
|
2024-11-06 06:26:23 +00:00
|
|
|
"package-shared"
|
2024-10-14 06:49:01 +00:00
|
|
|
],
|
|
|
|
"exclude": ["node_modules", "dump"]
|
|
|
|
}
|