mirror of
https://github.com/AtHeartEngineering/zk-kit.git
synced 2026-01-14 19:18:26 -05:00
26 lines
634 B
JSON
26 lines
634 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"target": "ES5",
|
|
"module": "ES6",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"preserveConstEnums": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declarationDir": "types",
|
|
"typeRoots": ["node_modules/@types", "types"],
|
|
"paths": {
|
|
"@zk-kit/*": ["packages/*/src"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|