[TS] Initial Typescript fix
This commit is contained in:
parent
8c15dd6752
commit
813295c857
36 changed files with 4285 additions and 1951 deletions
19
tsconfig.server.json
Normal file
19
tsconfig.server.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"target": "esnext",
|
||||
"module": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"allowJs": true,
|
||||
"esModuleInterop": true,
|
||||
"allowImportingTsExtensions": false,
|
||||
"isolatedModules": true,
|
||||
"noEmit": false,
|
||||
"resolveJsonModule": true,
|
||||
"outDir": "./build/server",
|
||||
"strict": true,
|
||||
"strictPropertyInitialization": false
|
||||
},
|
||||
"include": ["lib", "lib/**/*.ts"],
|
||||
"exclude": ["src", "node_modules", "old-updater"]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue