joplin/tsconfig.json

34 lines
816 B
JSON
Raw Permalink Normal View History

2019-12-04 21:06:22 +00:00
{
"compilerOptions": {
"module": "commonjs",
2024-10-05 19:22:44 +00:00
"target": "es2017",
2020-11-05 16:58:23 +00:00
//"lib": ["es2015", "es2020.string", "dom", "dom.iterable"],
2019-12-04 21:06:22 +00:00
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"listEmittedFiles": false,
2019-12-04 21:06:22 +00:00
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"sourceMap": true,
"jsx": "react",
"skipLibCheck": true,
"allowUmdGlobalAccess": true,
2019-12-04 21:06:22 +00:00
},
"exclude": [
"**/node_modules",
2020-11-05 16:58:23 +00:00
"packages/app-desktop/dist/**/*",
"packages/app-cli/tests/support/**/*",
"packages/app-cli/tests-build/**/*",
"packages/app-cli/build/**/*",
"Modules/**/*",
"packages/server/dist",
2019-12-04 21:06:22 +00:00
],
"ts-node": {
"preferTsExts": true
}
2019-12-04 21:06:22 +00:00
}