19 lines
367 B
JSON
19 lines
367 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../shared/tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"noImplicitAny": false,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"jest.*",
|
|
"eslint.*",
|
|
"scripts/**/*"
|
|
],
|
|
"exclude": [
|
|
"ormconfig.js",
|
|
"scripts/check_connect.js",
|
|
"scripts/generate_api_json.js"
|
|
]
|
|
}
|