mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-06 20:42:28 +03:00
32 lines
715 B
JSON
32 lines
715 B
JSON
{
|
|
"include": ["src/global.d.ts", "src/**/*.ts", "__tests__/**/*.ts"],
|
|
"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"]
|
|
}
|
|
}
|