PNet/tsconfig.json

20 lines
403 B
JSON
Raw Permalink Normal View History

2023-06-22 17:47:04 +02:00
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"declaration": true,
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"files": [
"js/main.ts"
],
"exclude": [
"node_modules",
"dist"
]
}