mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-28 10:52:16 +00:00

- introduce a `lit`(https://lit.dev) - lit is most popular web component builder - with lit, we can build high-performance WP with less code
41 lines
816 B
JSON
41 lines
816 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@dist/*": [
|
|
"dist/*"
|
|
]
|
|
},
|
|
"target": "es2017",
|
|
"lib": [
|
|
"esnext.array",
|
|
"esnext",
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"experimentalDecorators": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
],
|
|
}
|