mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-20 03:15:41 +02:00
git-subtree-dir: foundations/net git-subtree-mainline:2b0d510202git-subtree-split:7722c95341
25 lines
503 B
JSON
25 lines
503 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"composite": false
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
},
|
|
"include": ["*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|