2022-08-04 10:41:18 +03:00
|
|
|
{
|
|
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
|
|
"include": ["./src/**/*.ts"],
|
|
|
|
"compilerOptions": {
|
2023-06-30 10:15:55 +03:00
|
|
|
"types": ["cypress", "cypress-visual-regression", "node", "dockerode", "@nextcloud/typings"],
|
2022-08-04 10:41:18 +03:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "esnext",
|
2023-06-30 10:15:55 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
// Allow ts to import js files
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": false,
|
2022-08-04 10:41:18 +03:00
|
|
|
"noImplicitAny": false,
|
2023-06-30 10:15:55 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true,
|
2022-08-04 10:41:18 +03:00
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
// these options are overrides used only by ts-node
|
|
|
|
// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
|
|
|
|
"compilerOptions": {
|
2023-06-02 11:24:55 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"verbatimModuleSyntax": false
|
2022-08-04 10:41:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|