mirror of
https://github.com/natefrisch01/Graph-Link-Types.git
synced 2026-07-22 09:30:26 +00:00
18 lines
497 B
JSON
18 lines
497 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["DOM", "ES5", "ES6", "ES7"],
|
|
"rootDir": "src" // Explicitly set the root directory
|
|
},
|
|
"include": ["src/**/*.ts"] // Adjust the include pattern to be more specific
|
|
}
|