lemmy-js-client/tsconfig.json

18 lines
425 B
JSON
Raw Normal View History

2020-08-19 17:29:37 +00:00
{
"compilerOptions": {
"declaration": true,
"declarationDir": "./dist",
"module": "CommonJS",
"noImplicitAny": true,
"lib": ["es2017", "es7", "es6", "dom"],
"outDir": "./dist",
"target": "ES2015",
"experimentalDecorators": true,
"strictNullChecks": true,
"moduleResolution": "Node",
"esModuleInterop": true
2020-08-19 17:29:37 +00:00
},
"include": ["src/**/*"],
2020-08-19 17:29:37 +00:00
"exclude": ["node_modules", "dist"]
}