Files
bpsets/tsconfig.json

15 lines
325 B
JSON
Raw Normal View History

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