36 lines
651 B
JSON
36 lines
651 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"rootDir": ".",
|
|
"outDir": "./dist",
|
|
"module": "CommonJS",
|
|
"target": "ES2022",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"ignoreDeprecations": "6.0",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/vite.config.ts",
|
|
"**/vite.config.*",
|
|
"**/*.config.ts",
|
|
"**/*.config.*"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../shared"
|
|
}
|
|
]
|
|
} |