mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-15 12:23:51 +00:00
tooling: lax typechecking in tests
This commit is contained in:
committed by
Carlos Valente
parent
6beda1575a
commit
242cefd35c
@@ -7,7 +7,6 @@
|
||||
"noImplicitReturns": false, //TODO: fix this
|
||||
"allowJs": true,
|
||||
"esModuleInterop": true,
|
||||
"types": ["vitest/globals"],
|
||||
"outDir": "dist",
|
||||
"experimentalDecorators": true,
|
||||
},
|
||||
@@ -15,4 +14,13 @@
|
||||
"src/**/*.ts",
|
||||
"src/**/*.js",
|
||||
],
|
||||
"exclude": [
|
||||
"src/**/*.test.ts",
|
||||
"src/**/*.spec.ts",
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.tests.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"extends": "../../tsconfig.tests.json",
|
||||
"compilerOptions": {
|
||||
"target": "esnext",
|
||||
"module": "node16",
|
||||
"moduleResolution": "node16",
|
||||
"allowJs": true,
|
||||
"esModuleInterop": true,
|
||||
"types": ["vitest/globals"],
|
||||
"outDir": "dist",
|
||||
"experimentalDecorators": true,
|
||||
"composite": true
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.test.ts",
|
||||
"src/**/*.spec.ts",
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user