Choices/tsconfig.json
2019-12-21 14:56:36 +00:00

19 lines
416 B
JSON

{
"compilerOptions": {
"baseUrl": "/",
"outDir": "./dist/",
"allowJs": true,
"sourceMap": true,
"module": "commonjs",
"esModuleInterop": true,
"target": "es5",
"lib": ["es2017", "dom"],
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"strictNullChecks": true,
"types": ["cypress"]
},
"include": ["./src/**/*", "./cypress/**/*"]
}