25 lines
633 B
JSON
25 lines
633 B
JSON
# C0PY API -- tsconfig.json
|
|
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@siax/c0py-config": ["../packages/config/src/index.ts"],
|
|
"@siax/c0py-core": ["../packages/c0py-core/src/index.ts"],
|
|
"@siax/c0py-types": ["../packages/types/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|