mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
20 lines
461 B
JSON
20 lines
461 B
JSON
{
|
|
"include": ["./src/**/*.ts", "./src/**/*.vue"],
|
|
"exclude": ["node_modules", "vendor"],
|
|
"compilerOptions": {
|
|
"outDir": "./js",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"allowImportingTsExtensions": true,
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"verbatimModuleSyntax": true,
|
|
"target": "ES2020",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 2.7,
|
|
}
|
|
}
|