mirror of
https://github.com/molstar/molstar.git
synced 2026-06-04 13:30:24 +08:00
* production build using esbuild * build browser tests with esbuild * use tsc-alias * remove webpack * changelog * update eslint to v9 * pr feedback * update build * include src map by default
30 lines
836 B
JSON
30 lines
836 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"target": "es2018",
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"sourceMap": false,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"importHelpers": true,
|
|
"noEmitHelpers": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react-jsx",
|
|
"lib": [ "ES2018", "dom", "ES2022.Object" ],
|
|
"rootDir": "src",
|
|
"outDir": "lib"
|
|
},
|
|
"include": [ "src/**/*" ],
|
|
"exclude": [ "src/**/_spec/*" ],
|
|
"tsc-alias": {
|
|
"resolveFullPaths": true,
|
|
"verbose": true
|
|
}
|
|
} |