Files
bpsets/tsconfig.json

15 lines
324 B
JSON
Raw Normal View History

2024-12-23 21:52:08 +09:00
{
"compilerOptions": {
"target": "ES2016",
"module": "CommonJS",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"experimentalDecorators": true
},
"include": ["src/**/*"],
"exclude": ["node_modules/**/*"]
}