You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
695 B
23 lines
695 B
{
|
|
"extends": "@vue/tsconfig",
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
|
"exclude": ["node_modules", "vendor"],
|
|
"compilerOptions": {
|
|
"outDir": "./js",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"allowImportingTsExtensions": true,
|
|
"strictNullChecks": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"types": []
|
|
}
|
|
} |