1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-01-24 22:55:38 +00:00
lemmy/api_tests/tsconfig.json

16 lines
360 B
JSON
Raw Normal View History

2020-12-20 16:16:57 -05:00
{
"compilerOptions": {
"declaration": true,
"declarationDir": "./dist",
"module": "CommonJS",
"noImplicitAny": true,
"lib": ["es2017", "es7", "es6", "dom"],
"outDir": "./dist",
"target": "ES2015",
"strictNullChecks": true,
2020-12-20 16:16:57 -05:00
"moduleResolution": "Node"
},
"include": ["src/**/*"],
2020-12-20 16:16:57 -05:00
"exclude": ["node_modules", "dist"]
}