diff options
Diffstat (limited to 'tools/compare-models/tsconfig.json')
| -rw-r--r-- | tools/compare-models/tsconfig.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/compare-models/tsconfig.json b/tools/compare-models/tsconfig.json new file mode 100644 index 00000000..edeec809 --- /dev/null +++ b/tools/compare-models/tsconfig.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@tsconfig/node22/tsconfig.json", + "compilerOptions": { + "target": "ES2022", + "module": "CommonJS", + "lib": ["ES2022"], + "outDir": "dist", + "rootDir": "src", + "moduleResolution": "node", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "skipLibCheck": true, + "allowJs": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": false, + "declaration": false, + "sourceMap": false + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} |
