mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-28 08:04:05 +03:00
36 lines
732 B
JSON
36 lines
732 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"sourceMap": false,
|
|
"noEmit": false,
|
|
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"isolatedModules": false,
|
|
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": [
|
|
"src/global.d.ts",
|
|
"src/**/*.ts",
|
|
"__tests__/**/*.ts"
|
|
],
|
|
}
|