ce340aba7a
* wip * wip * wip * wip * wip * Update define.ts * Update update.ts * Update user.ts * wip * wip * Update request.ts * URL * wip * wip * wip * wip * Update invite.ts * Update create.ts
45 lines
886 B
JSON
45 lines
886 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"rootDir": "./",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"outDir": "../built",
|
|
"typeRoots": [
|
|
"../node_modules/@types",
|
|
"./@types"
|
|
],
|
|
"lib": [
|
|
"esnext"
|
|
]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"./client/**/*.ts"
|
|
]
|
|
}
|