VectorGOLEM/tsconfig.json

21 lines
421 B
JSON

{
"exclude": [ "docs", "vendor" ],
"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
}
}