mirror of
https://github.com/directus/directus.git
synced 2026-01-23 07:47:58 -05:00
* Add async/destroy packages * Target node 12+ * Return payload data in json export * Import JSON from Stream * Add CSV import support * Add CSV Import * Add docs * Add missing types
17 lines
317 B
JSON
17 lines
317 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
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|