carta/tsconfig.json
2023-05-04 22:24:19 +02:00

19 lines
383 B
JSON

{
/**
* Config for scripts and plugin packages.
*/
"compilerOptions": {
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": false,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"composite": true,
"outDir": "./dist",
"module": "ESNext",
"target": "ESNext"
}
}