mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-17 21:12:14 +01:00
22 lines
412 B
JSON
22 lines
412 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": false,
|
|
"noImplicitAny": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"paths": {
|
|
"@nextcloud/event-bus": [
|
|
"./node_modules/@nextcloud/event-bus/dist/index.js",
|
|
"./node_modules/@nextcloud/event-bus/dist/lib/*"
|
|
]
|
|
},
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*.tsx"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"vendor"
|
|
]
|
|
}
|