mirror of
https://github.com/mathuo/dockview
synced 2025-08-14 05:06:02 +00:00
22 lines
648 B
JSON
22 lines
648 B
JSON
|
|
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2019",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"jsx": "react",
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"allowUnreachableCode": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
// "strict": true,
|
|
"strictBindCallApply": true, // pass
|
|
"alwaysStrict": true, // pass
|
|
"noImplicitThis": true, // pass
|
|
"strictFunctionTypes": true, // pass
|
|
"strictNullChecks": false,
|
|
"strictPropertyInitialization": false,
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
} |