gather/tsconfig.json

16 строки
344 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"noUnusedLocals": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"outDir": "./lib",
"lib": ["es6", "dom"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["./node_modules/@types"]
},
"include": ["src"]
}