28 строки
624 B
JSON
28 строки
624 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
|
|
"exclude": ["./src/**/*.cy.ts"],
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "Bundler",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"declaration": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"outDir": "./dist",
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 3.3,
|
|
"rootDir": "./src",
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "ES2015",
|
|
"target": "ES2015",
|
|
"moduleResolution": "node"
|
|
}
|
|
}
|
|
}
|