Restructured tsconfig files

This commit is contained in:
Alex Mikhalev 2018-09-02 03:15:31 -06:00
parent e6c3904701
commit 68e828e2e5
5 changed files with 45 additions and 55 deletions

View File

@ -1,21 +1,18 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"jsx": "react",
"experimentalDecorators": true,
"target": "es2017",
"lib": [
"es2017",
"dom",
"scripthost"
],
"module": "commonjs",
"types": [
"webpack-env",
"core-js",
"node"
],
"strict": true,
"baseUrl": "..",
"paths": {
"@common/*": [
@ -26,6 +23,10 @@
]
}
},
"include": [
"./client/**/*.ts",
"./client/**/*.tsx"
],
"references": [{
"path": "../common"
}]

View File

@ -1,16 +1,7 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../dist/common",
"experimentalDecorators": true,
"target": "es2017",
"lib": [
"es2017"
],
"types": [
"node"
],
"module": "commonjs",
"strict": true,
"baseUrl": "..",
"composite": true,
"declaration": true,

View File

@ -1,15 +1,9 @@
import * as path from "path";
import {
Connection,
createConnection,
EntityManager,
getConnectionOptions,
Repository
} from "typeorm";
import { Connection, createConnection, getConnectionOptions } from "typeorm";
import logger from "@common/logger";
import { SprinklersDevice, User } from "./entities";
import { User } from "./entities";
import { SprinklersDeviceRepository, UserRepository } from "./repositories/";
export class Database {

View File

@ -1,35 +1,25 @@
{
"compilerOptions": {
"outDir": "../dist",
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2017",
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"types": [
"webpack-env",
"node"
],
"strict": true,
"allowJs": true,
"baseUrl": "..",
"paths": {
"@common/*": [
"./common/*"
],
"@server/*": [
"./server/*"
]
}
},
"references": [{
"path": "../common"
}],
"include": [
"./**/*.ts"
]
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../dist",
"sourceMap": true,
"emitDecoratorMetadata": true,
"strict": true,
"allowJs": true,
"baseUrl": "..",
"paths": {
"@common/*": [
"./common/*"
],
"@server/*": [
"./server/*"
]
}
},
"references": [{
"path": "../common"
}],
"include": [
"./**/*.ts"
]
}

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "es2017",
"module": "commonjs",
"lib": [
"es2017"
],
"types": [
"node"
],
"strict": true
}
}