20 lines
371 B
JSON
20 lines
371 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmitOnError": false,
|
||
|
|
"allowJs": false
|
||
|
|
},
|
||
|
|
"include": ["src", "fabric.ts", "index.ts", "index.node.ts"],
|
||
|
|
"exclude": [
|
||
|
|
"dist",
|
||
|
|
"dist-extensions",
|
||
|
|
"node_modules",
|
||
|
|
"**/*.mjs",
|
||
|
|
"**/*.js",
|
||
|
|
"**/*.spec.ts",
|
||
|
|
"**/*.test.ts",
|
||
|
|
"**/*.fixtures.ts"
|
||
|
|
]
|
||
|
|
}
|