Vector-Local/tsconfig.json

25 lines
440 B
JSON

{
"exclude": [
"docs",
"vendor",
"coverage"
],
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"newLine": "lf",
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"pretty": true,
"target": "es5",
"lib": [ "dom" ],
"allowJs": true,
"checkJs": true,
"noEmit": true
}
}