mirror of
https://github.com/directus/directus.git
synced 2026-01-23 02:38:06 -05:00
* Notify user if an update is available * Replaced console log with logger * Fix lint error * Update api/src/start.ts * Make update check non-blocking * Remove unused async call Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
18 lines
346 B
JSON
18 lines
346 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "ES2019",
|
|
"moduleResolution": "node",
|
|
"sourceMap": false,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"lib": ["es2019"],
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|