mirror of
https://github.com/alexgo-io/redstone-node.git
synced 2026-04-28 19:55:17 +08:00
26 lines
483 B
JSON
26 lines
483 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "es6",
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["es2021"],
|
|
"allowJs": true
|
|
},
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/**/*.json",
|
|
"./package.json",
|
|
"manifests/**/*.json",
|
|
"index.ts"
|
|
],
|
|
"exclude": ["node_modules", "tools", "test"]
|
|
}
|