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/**/*"]
|
|
|
|
}
|