mirror of
https://github.com/alexgo-io/peggedassets-server.git
synced 2026-01-12 16:53:14 +08:00
29 lines
644 B
JSON
29 lines
644 B
JSON
{
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"skipLibCheck": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": false,
|
|
"jsx": "preserve",
|
|
"allowJs": true,
|
|
"noImplicitThis": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"lib": ["ES2019"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/setupTestEnv.js"]
|
|
}
|