mirror of
https://github.com/suren-atoyan/monaco-react.git
synced 2025-12-08 20:16:13 +00:00
* use typescript * update snapshots * update playground * revert gitignore * unskip test * update snapshots properly * split up types * use consistent type imports * dont use react namespace specifier * use type over interface * revert to rollup * cleanup * fix pg * go back to tsup * add includes to tsconfig
22 lines
574 B
JSON
22 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"target": "es2020",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["src", "tsup.config.ts", "setupTests.ts", "vitest.config.ts"]
|
|
}
|