24 lines
756 B
JSON
24 lines
756 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"rewriteRelativeImportExtensions": false,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": false,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["*.ts", "lib/**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "web", "log", "coverage", "views", "legacy", "dvf", "geodvf"]
|
|
}
|