PNet/tsconfig.json
2023-06-22 17:47:04 +02:00

20 lines
No EOL
403 B
JSON

{
"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"
]
}