rage-framework
Version:
## How to Install *server-side* ```bash npm install @rage-framework/server ```
40 lines (38 loc) • 839 B
JSON
{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "es6",
"lib": [
"es2017",
"es2016",
"es2015",
"es6",
"dom",
"esnext.asynciterable"
],
"strict": false,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": false,
"strictNullChecks": false,
"strictFunctionTypes": true,
"strictPropertyInitialization": false,
"allowUmdGlobalAccess": false,
"stripInternal": true,
"sourceMap": true,
"noEmitOnError": true,
"declaration": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"types": [
"node"
],
"typeRoots": [
"node_modules/@types"
]
},
"exclude": ["node_modules", "dist"]
}