jupyterlab-sandbox-announce.../tsconfig.json

24 lines
537 B
JSON
Raw Normal View History

2023-02-04 20:07:10 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"esModuleInterop": true,
"incremental": true,
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"preserveWatchOutput": true,
"resolveJsonModule": true,
"outDir": "lib",
"rootDir": "src",
"strict": true,
"strictNullChecks": true,
2024-02-05 15:11:31 +00:00
"target": "ES2018"
2023-02-04 20:07:10 +00:00
},
"include": ["src/*"]
}