mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
8099bc24e1
* refactor(backend): use node16 for moduleResolution
* update deps
* Update tsconfig.json
* ✌️
* revive KEYWORD
* restore strict-event-emitter-types dependency
* restore ms dependency
* cancel redundant import reorder
* fix
* Delete ms.ts
* remove rndstr
---------
Co-authored-by: Kagami Sascha Rosylight <saschanaz@outlook.com>
45 lines
934 B
JSON
45 lines
934 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"target": "ES2022",
|
|
"module": "es2020",
|
|
"moduleResolution": "node16",
|
|
"allowSyntheticDefaultImports": true,
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["../src/*"]
|
|
},
|
|
"typeRoots": [
|
|
"../node_modules/@types",
|
|
"../src/@types"
|
|
],
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"types": ["jest", "node"]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./**/*.ts",
|
|
"../src/**/*.test.ts",
|
|
"../src/@types/**/*.ts"
|
|
]
|
|
}
|