27 строки
474 B
JSON
27 строки
474 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [ "es6" ],
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "out",
|
|
"rootDir": "src",
|
|
"sourceMap": true,
|
|
"target": "es6"
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/**.test.ts",
|
|
"**/__mocks__/**"
|
|
],
|
|
"references": [
|
|
{ "path": "./client" },
|
|
{ "path": "./server" }
|
|
]
|
|
}
|