26 lines
568 B
JSON
26 lines
568 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": false,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"noLib": false,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"target": "es2015",
|
|
"baseUrl": ".",
|
|
},
|
|
"exclude": [
|
|
"./node_modules"
|
|
],
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.vue",
|
|
],
|
|
}
|