attempt to fix client vs server typescript conflict
parent
5bf895af70
commit
52d1e87c4e
|
|
@ -23,3 +23,5 @@ public/images-custom/*
|
||||||
temp/wmf/
|
temp/wmf/
|
||||||
temp/config.*
|
temp/config.*
|
||||||
temp/*.csv
|
temp/*.csv
|
||||||
|
|
||||||
|
types/*.js
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"target": "ES6",
|
|
||||||
"module": "CommonJS",
|
|
||||||
"moduleResolution": "Node",
|
|
||||||
"isolatedModules": false,
|
|
||||||
"declaration": true,
|
|
||||||
"noImplicitAny": false,
|
|
||||||
"removeComments": true,
|
|
||||||
"allowUnreachableCode": false
|
|
||||||
},
|
|
||||||
"compileOnSave": true,
|
|
||||||
"buildOnSave": true,
|
|
||||||
"atom": {
|
|
||||||
"rewriteTsconfig": false,
|
|
||||||
"formatOnSave": true
|
|
||||||
},
|
|
||||||
"formatCodeOptions": {
|
|
||||||
"indentSize": 2,
|
|
||||||
"tabSize": 2,
|
|
||||||
"insertSpaceAfterCommaDelimiter": true,
|
|
||||||
"insertSpaceAfterSemicolonInForStatements": true,
|
|
||||||
"insertSpaceBeforeAndAfterBinaryOperators": true,
|
|
||||||
"insertSpaceAfterKeywordsInControlFlowStatements": true,
|
|
||||||
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
|
|
||||||
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
|
|
||||||
"placeOpenBraceOnNewLineForFunctions": false,
|
|
||||||
"placeOpenBraceOnNewLineForControlBlocks": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "ES6",
|
||||||
|
"module": "CommonJS",
|
||||||
|
"moduleResolution": "Node",
|
||||||
|
"isolatedModules": false,
|
||||||
|
"declaration": true,
|
||||||
|
"noImplicitAny": false,
|
||||||
|
"removeComments": true,
|
||||||
|
"allowUnreachableCode": false
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"public-typescript/adminCleanup.ts",
|
||||||
|
"public-typescript/adminFees.ts",
|
||||||
|
"public-typescript/adminLotTypes.ts",
|
||||||
|
"public-typescript/adminOccupancyTypes.ts",
|
||||||
|
"public-typescript/adminTables.ts",
|
||||||
|
"public-typescript/dashboard.ts",
|
||||||
|
"public-typescript/lotEdit.ts",
|
||||||
|
"public-typescript/lotOccupancyEdit.ts",
|
||||||
|
"public-typescript/lotOccupancySearch.ts",
|
||||||
|
"public-typescript/lotSearch.ts",
|
||||||
|
"public-typescript/lotView.ts",
|
||||||
|
"public-typescript/main.ts",
|
||||||
|
"public-typescript/mapEdit.ts",
|
||||||
|
"public-typescript/mapSearch.ts",
|
||||||
|
"public-typescript/mapView.ts",
|
||||||
|
"public-typescript/reportSearch.ts",
|
||||||
|
"public-typescript/workOrderEdit.ts",
|
||||||
|
"public-typescript/workOrderMilestoneCalendar.ts",
|
||||||
|
"public-typescript/workOrderOutlook.ts",
|
||||||
|
"public-typescript/workOrderSearch.ts",
|
||||||
|
"public-typescript/workOrderView.ts"
|
||||||
|
],
|
||||||
|
"compileOnSave": true,
|
||||||
|
"buildOnSave": true
|
||||||
|
}
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"target": "es2017",
|
|
||||||
"module": "es2022",
|
|
||||||
"moduleResolution": "Node",
|
|
||||||
"isolatedModules": false,
|
|
||||||
"declaration": true,
|
|
||||||
"noImplicitAny": false,
|
|
||||||
"removeComments": true,
|
|
||||||
"allowUnreachableCode": false,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"resolveJsonModule": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"skipLibCheck": true
|
|
||||||
},
|
|
||||||
"compileOnSave": true,
|
|
||||||
"buildOnSave": true,
|
|
||||||
"atom": {
|
|
||||||
"rewriteTsconfig": false,
|
|
||||||
"formatOnSave": true
|
|
||||||
},
|
|
||||||
"formatCodeOptions": {
|
|
||||||
"indentSize": 2,
|
|
||||||
"tabSize": 2,
|
|
||||||
"insertSpaceAfterCommaDelimiter": true,
|
|
||||||
"insertSpaceAfterSemicolonInForStatements": true,
|
|
||||||
"insertSpaceBeforeAndAfterBinaryOperators": true,
|
|
||||||
"insertSpaceAfterKeywordsInControlFlowStatements": true,
|
|
||||||
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
|
|
||||||
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
|
|
||||||
"placeOpenBraceOnNewLineForFunctions": false,
|
|
||||||
"placeOpenBraceOnNewLineForControlBlocks": false
|
|
||||||
},
|
|
||||||
"exclude": [
|
|
||||||
"node_modules/*",
|
|
||||||
"public-typescript/*"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es2017",
|
||||||
|
"module": "es2022",
|
||||||
|
"moduleResolution": "Node",
|
||||||
|
"isolatedModules": false,
|
||||||
|
"declaration": true,
|
||||||
|
"noImplicitAny": false,
|
||||||
|
"removeComments": true,
|
||||||
|
"allowUnreachableCode": false,
|
||||||
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"resolveJsonModule": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"skipLibCheck": true
|
||||||
|
},
|
||||||
|
"compileOnSave": true,
|
||||||
|
"buildOnSave": true,
|
||||||
|
"exclude": ["node_modules/*", "public-typescript/*"]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue