зеркало из https://github.com/nextcloud/server.git
27 строки
718 B
JSON
27 строки
718 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"include": ["./apps/**/*.ts", "./core/**/*.ts", "./*.d.ts"],
|
|
"compilerOptions": {
|
|
"types": ["cypress", "jest", "node", "vue"],
|
|
"outDir": "./dist/",
|
|
"target": "ESNext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
// Allow ts to import js files
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
},
|
|
"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": {
|
|
"module": "commonjs",
|
|
"verbatimModuleSyntax": false
|
|
}
|
|
}
|
|
}
|