carta/tsconfig.json
BearToCode f0abf195b8 refactor: remove verbose prefixes
Remove "Carta" prefixes from various interface/components.

BREAKING CHANGE: Different objects have been renamed
2024-04-12 08:24:37 +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"
}
}