mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-04-01 21:13:11 +00:00
experiment with new approach
This commit is contained in:
36
site/server/tsconfig.json
Normal file
36
site/server/tsconfig.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "nodenext",
|
||||
"moduleResolution": "nodenext",
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"esModuleInterop": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"strictPropertyInitialization": false,
|
||||
"target": "es2019",
|
||||
"strict": true,
|
||||
"sourceMap": false,
|
||||
"skipLibCheck": true,
|
||||
"outDir": "./dist",
|
||||
"baseUrl": "./"
|
||||
},
|
||||
"include": ["src/**/*.ts"],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"migration.ts",
|
||||
"src/plugins/**/ui/*",
|
||||
"admin-ui",
|
||||
"src/plugins/**/dashboard/*",
|
||||
"src/gql/*",
|
||||
"vite.*.*ts"
|
||||
],
|
||||
"ts-node": {
|
||||
"files": true
|
||||
},
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.dashboard.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user