qpa-client/server/tsconfig.json

26 lines
621 B
JSON
Raw Normal View History

2018-05-05 19:50:45 +02:00
{
"compilerOptions": {
"typeRoots": ["src/@types"],
2019-01-31 14:18:26 +01:00
"lib": ["es2015", "esnext.asynciterable"],
2018-05-05 19:50:45 +02:00
"module": "commonjs",
2018-05-16 20:48:38 +02:00
"noImplicitReturns": true,
"outDir": "lib",
"sourceMap": true,
"target": "es6",
2018-09-08 22:23:44 +02:00
"allowSyntheticDefaultImports": true,
2019-03-08 15:58:35 +01:00
"esModuleInterop": true,
"emitDecoratorMetadata": true,
2019-03-11 13:39:16 +01:00
"experimentalDecorators": true,
"types": ["node", "jest"]
2018-05-05 19:50:45 +02:00
},
2018-05-16 20:48:38 +02:00
"compileOnSave": true,
"include": [
"src"
2018-05-05 19:50:45 +02:00
],
"files": [
2019-03-11 13:39:16 +01:00
"src/@types/index.d.ts", "../node_modules/@types/node/ts3.2/index.d.ts"
],
2018-05-05 19:50:45 +02:00
"exclude": [
2019-03-08 15:58:35 +01:00
"**/*.spec.ts", "node_modules", "__tests__"
2018-05-16 20:48:38 +02:00
]}