tsconfig.json•618 B
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noUnusedLocals": true,
"outDir": "./build",
"resolveJsonModule": true,
"rootDir": "./src",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES2020",
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"build"
],
}