Choices/tsconfig.json

19 lines
416 B
JSON
Raw Normal View History

2019-12-14 15:04:04 +01:00
{
"compilerOptions": {
"baseUrl": "/",
"outDir": "./dist/",
"allowJs": true,
"sourceMap": true,
"module": "commonjs",
"esModuleInterop": true,
"target": "es5",
2019-12-21 15:56:36 +01:00
"lib": ["es2017", "dom"],
2019-12-14 15:04:04 +01:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
2019-12-21 15:19:13 +01:00
"strictNullChecks": true,
"types": ["cypress"]
2019-12-14 15:04:04 +01:00
},
2019-12-21 15:19:13 +01:00
"include": ["./src/**/*", "./cypress/**/*"]
2019-12-14 15:04:04 +01:00
}